﻿/* =========================================================
   AresZmeny2 - PUBLIC layout
   ========================================================= */

:root {
    --az-public-navbar-height: 72px;
}

/* Public stránky mají fixní horní menu. */
body.mode-public {
    background-color: #f8f9fa;
    padding-top: var(--az-public-navbar-height);
}

/* Hlavní public wrapper v layoutu. */
.mode-public .main-wrap {
    padding-top: 1rem;
    padding-bottom: 2rem;
}


/* Kotvy pod fixed navbar */
.mode-public [id] {
    scroll-margin-top: calc(var(--az-public-navbar-height) + 1rem);
}

/* Jemný stín používaný v public layoutu. */
.mode-public .box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

/* Public brand v horním menu. */
.az-public-brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #10233f;
    font-weight: 900;
    letter-spacing: -.02em;
    text-decoration: none;
}

    .az-public-brand:hover {
        color: #0d6efd;
        text-decoration: none;
    }

.az-public-brand__icon {
    width: 2rem;
    height: 2rem;
    display: block;
    flex: 0 0 auto;
}

.az-public-brand__text {
    font-size: 1.08rem;
    line-height: 1;
}

/* Fallback pro Bootstrap navbar brand. */
.mode-public .navbar-brand .badge {
    font-weight: 600;
}

.mode-public a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Footer nesmí být absolute, protože sticky footer řeší site.css přes flex layout. */
.mode-public .footer {
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 60px;
}


/* =========================================================
   PUBLIC společné komponenty
   ========================================================= */

/* Základní wrapper public stránky. */
.az-public-page {
    max-width: 1220px;
    margin: 0 auto;
    padding: 1.5rem 1rem 4rem;
}

/* Malý štítek nad nadpisem. */
.az-kicker {
    margin-bottom: .45rem;
    color: #0d6efd;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Společný hero blok pro public stránky. */
.az-public-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 2rem;
    align-items: center;
    min-height: 410px;
    padding: 2.5rem;
    color: #fff;
    border-radius: 1.6rem;
    overflow: hidden;
    background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.22), transparent 30%), linear-gradient(135deg, #10233f 0%, #16456f 48%, #0a6b7a 100%);
    box-shadow: 0 1.2rem 3rem rgba(16, 35, 63, .22);
}

    .az-public-hero .az-kicker {
        color: rgba(255,255,255,.78);
    }

    .az-public-hero h1 {
        max-width: 760px;
        margin-bottom: 1rem;
        font-size: clamp(2.3rem, 5vw, 4.3rem);
        line-height: 1.02;
        font-weight: 950;
        letter-spacing: -.05em;
    }

    .az-public-hero p {
        max-width: 760px;
        margin-bottom: 1.4rem;
        color: rgba(255,255,255,.86);
        font-size: 1.18rem;
        line-height: 1.65;
    }

/* Akce v hero bloku. */
.az-public-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* Společný orbit / kruhový vizuál v hero bloku. */
.az-public-orbit {
    position: relative;
    min-height: 320px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
}

    .az-public-orbit::before,
    .az-public-orbit::after {
        content: "";
        position: absolute;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 50%;
    }

    .az-public-orbit::before {
        inset: 3.5rem;
    }

    .az-public-orbit::after {
        inset: 7rem;
    }

/* Středová karta v orbit vizuálu. */
.az-public-orbit-card {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 230px;
    padding: 1.15rem;
    text-align: center;
    color: #10233f;
    background: rgba(255,255,255,.95);
    border-radius: 1.2rem;
    transform: translate(-50%, -50%);
    box-shadow: 0 1rem 2rem rgba(0,0,0,.16);
}

    .az-public-orbit-card span {
        color: #6c757d;
        font-size: .75rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .az-public-orbit-card strong {
        display: block;
        font-size: 1.55rem;
    }

    .az-public-orbit-card small {
        color: #495057;
    }

/* Obecný chip v orbit vizuálu. Pozice se řeší page-specific třídou. */
.az-public-orbit-chip {
    position: absolute;
    z-index: 4;
    min-width: 9.1rem;
    padding: .65rem .9rem;
    text-align: center;
    color: #10233f;
    background: #fff;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 .8rem 1.6rem rgba(0,0,0,.15);
}

/* Grid pro tři úvodní informační karty. */
.az-public-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
    margin: 1.2rem 0 2rem;
}

/* Obecná public informační karta. */
.az-public-info-card {
    padding: 1rem;
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 1.1rem;
    box-shadow: 0 .7rem 1.5rem rgba(16,35,63,.05);
}

.az-info-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    margin-bottom: .7rem;
    color: #fff;
    background: #0d6efd;
    border-radius: 999px;
    font-weight: 950;
}

.az-public-info-card strong {
    display: block;
    margin-bottom: .35rem;
    color: #17212b;
    font-size: 1.05rem;
}

.az-public-info-card p {
    margin-bottom: 0;
    color: #536170;
    line-height: 1.55;
}

/* Nadpis sekce s doprovodným textem. */
.az-public-section-heading {
    max-width: 860px;
    margin: 2rem 0 1rem;
}

    .az-public-section-heading h2 {
        margin-bottom: .35rem;
        font-size: clamp(1.7rem, 3vw, 2.4rem);
        font-weight: 950;
        letter-spacing: -.04em;
    }

    .az-public-section-heading p {
        margin-bottom: 0;
        color: #536170;
        line-height: 1.6;
    }

/* Obecný třísloupcový grid pro public karty. */
.az-public-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
    margin-bottom: 2rem;
}

/* Obecná karta typu téma / sledovaná oblast. */
.az-public-topic-card {
    padding: 1rem;
    background: #fff;
    border: 1px solid #dce3ea;
    border-top: 5px solid #0d6efd;
    border-radius: 1.1rem;
    box-shadow: 0 .7rem 1.5rem rgba(16,35,63,.05);
}

    .az-public-topic-card strong {
        display: block;
        margin-bottom: .45rem;
        color: #17212b;
        font-size: 1.05rem;
    }

    .az-public-topic-card p {
        margin-bottom: 0;
        color: #536170;
        line-height: 1.55;
    }

/* Dvousloupcový public grid. */
.az-public-two-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Obecná obsahová karta. */
.az-public-content-card {
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 1.2rem;
    box-shadow: 0 .8rem 1.7rem rgba(16,35,63,.06);
}

/* Zvýrazněná obsahová karta. */
.az-public-content-card--accent {
    background: radial-gradient(circle at 100% 0, rgba(13,110,253,.12), transparent 28%), #fff;
}

.az-public-content-card h2 {
    margin-bottom: .75rem;
    font-weight: 950;
    letter-spacing: -.03em;
}

.az-public-content-card p {
    color: #536170;
    line-height: 1.6;
}

/* Seznam vlastností v obsahové kartě. */
.az-feature-list {
    display: grid;
    gap: .6rem;
    margin-top: 1rem;
}

/* Řádek vlastnosti s názvem a popisem. */
.az-feature-row {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: .75rem;
    padding: .75rem;
    background: #f8fafc;
    border: 1px solid #e7edf3;
    border-radius: .85rem;
}

    .az-feature-row strong {
        color: #17212b;
    }

    .az-feature-row span {
        color: #536170;
        line-height: 1.45;
    }

/* Malé metriky / cílové skupiny. */
.az-mini-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .7rem;
    margin-top: 1rem;
}

    .az-mini-metric-grid div {
        padding: .85rem;
        background: #f8fafc;
        border: 1px solid #e7edf3;
        border-radius: .9rem;
    }

    .az-mini-metric-grid strong {
        display: block;
        color: #17212b;
        font-size: 1.05rem;
    }

    .az-mini-metric-grid span {
        color: #536170;
        font-size: .86rem;
    }

/* Obecný procesní grid. */
.az-public-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
    margin-bottom: 2rem;
}

/* Jeden krok procesu. */
.az-public-process-step {
    min-height: 195px;
    padding: 1rem;
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 1.1rem;
    box-shadow: 0 .8rem 1.7rem rgba(16,35,63,.06);
}

    .az-public-process-step span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        margin-bottom: .8rem;
        color: #fff;
        background: #0d6efd;
        border-radius: 999px;
        font-weight: 950;
    }

    .az-public-process-step strong {
        display: block;
        margin-bottom: .4rem;
        color: #17212b;
        font-size: 1.02rem;
    }

    .az-public-process-step p {
        margin-bottom: 0;
        color: #536170;
        font-size: .92rem;
        line-height: 1.5;
    }

/* Spodní CTA blok public stránky. */
.az-public-bottom-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    color: #fff;
    background: #10233f;
    border-radius: 1.3rem;
}

    .az-public-bottom-cta .az-kicker {
        color: rgba(255,255,255,.68);
    }

    .az-public-bottom-cta h2 {
        margin-bottom: .4rem;
        font-weight: 950;
    }

    .az-public-bottom-cta p {
        max-width: 840px;
        margin-bottom: 0;
        color: rgba(255,255,255,.78);
        line-height: 1.6;
    }

.az-public-bottom-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}


/* =========================================================
   PUBLIC page: Homepage
   ========================================================= */

/* Homepage má o něco vyšší hero než běžné vnitřní public stránky. */
.az-home-hero {
    min-height: 430px;
}

    .az-home-hero p {
        max-width: 780px;
    }

/* Pozice chipů v homepage hero orbitu. */
.az-home-chip--subject {
    top: 1rem;
    left: 1.6rem;
}

.az-home-chip--change {
    top: 2.4rem;
    right: .8rem;
}

.az-home-chip--email {
    right: 2.2rem;
    bottom: 2rem;
}

.az-home-chip--history {
    bottom: 1rem;
    left: .4rem;
}

/* =========================================================
   PUBLIC page: Ceník / Tarify
   ========================================================= */

/* Tarifní hero má kratší hlavní nadpis než homepage. */
.az-public-hero--tarify h1 {
    max-width: 720px;
}

/* Pozice tarifních chipů v hero orbitu. */
.az-tarify-chip {
    min-width: 7rem;
    font-weight: 950;
}

.az-tarify-chip--free {
    top: 1rem;
    left: 2rem;
}

.az-tarify-chip--basic {
    top: 2.2rem;
    right: 1.2rem;
}

.az-tarify-chip--team {
    right: 2.5rem;
    bottom: 2rem;
}

.az-tarify-chip--individual {
    bottom: 1rem;
    left: .5rem;
}

/* Prázdný stav tarifní nabídky. */
.az-public-empty-state {
    padding: 1.5rem;
    background: #fff8e1;
    border: 1px solid #ffecb5;
    border-radius: 1rem;
}

    .az-public-empty-state h2 {
        margin-bottom: .35rem;
        font-size: 1.25rem;
        font-weight: 900;
    }

    .az-public-empty-state p {
        margin-bottom: 0;
        color: #664d03;
    }

/* Link ve veřejném nadpisu sekce. */
.az-public-section-heading a {
    font-weight: 700;
}

/* Grid tarifů. */
.az-tarify-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

/* Tarifní karta. */
.az-tarif-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.15rem;
    background: #fff;
    border: 1px solid #dce3ea;
    border-top: 6px solid #6c757d;
    border-radius: 1.25rem;
    box-shadow: 0 .9rem 2rem rgba(16,35,63,.07);
}

.az-tarif-card--free {
    border-top-color: #6c757d;
}

.az-tarif-card--basic {
    border-top-color: #198754;
}

.az-tarif-card--team {
    border-top-color: #0d6efd;
}

.az-tarif-card--individual {
    border-top-color: #212529;
}

.az-tarif-card__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .9rem;
    align-items: start;
    margin-bottom: 1rem;
}

.az-tarif-code {
    display: inline-flex;
    margin-bottom: .55rem;
    padding: .25rem .6rem;
    color: #084298;
    background: #eef5ff;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
}

.az-tarif-card h2 {
    margin-bottom: .35rem;
    color: #17212b;
    font-size: 1.55rem;
    font-weight: 950;
    letter-spacing: -.03em;
}

.az-tarif-card__header p {
    margin-bottom: 0;
    color: #536170;
    line-height: 1.45;
}

.az-tarif-price {
    min-width: 120px;
    padding: .75rem;
    color: #fff;
    text-align: right;
    background: linear-gradient(135deg, #10233f, #0d6efd);
    border-radius: .9rem;
}

    .az-tarif-price strong {
        display: block;
        font-size: 1.05rem;
        line-height: 1.15;
    }

    .az-tarif-price span {
        color: rgba(255,255,255,.75);
        font-size: .78rem;
    }

.az-tarif-limit-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 1rem;
}

.az-tarif-limit-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 2.2rem;
    padding: .35rem .65rem;
    background: #f8fafc;
    border: 1px solid #dce3ea;
    border-radius: 999px;
}

    .az-tarif-limit-pill span {
        color: #6c757d;
        font-size: .72rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .az-tarif-limit-pill strong {
        color: #17212b;
        font-size: .9rem;
    }

.az-tarif-details {
    display: grid;
    gap: .55rem;
    margin-top: .25rem;
}

.az-tarif-detail-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: .65rem;
    padding: .65rem .75rem;
    background: #f8fafc;
    border: 1px solid #e7edf3;
    border-radius: .75rem;
}

    .az-tarif-detail-row strong {
        color: #17212b;
        font-size: .9rem;
    }

    .az-tarif-detail-row span {
        color: #536170;
        font-size: .9rem;
        line-height: 1.4;
    }

.az-tarif-card__footer {
    margin-top: auto;
    padding-top: 1rem;
}

/* Rozšiřující balíčky subjektů. */
.az-subjekt-packages-section {
    margin: 1.5rem 0 2rem;
}

.az-subjekt-packages-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1.25rem;
    align-items: stretch;
    padding: 1.25rem;
    background: radial-gradient(circle at 100% 0, rgba(13,110,253,.12), transparent 30%), #fff;
    border: 1px solid #dce3ea;
    border-radius: 1.25rem;
    box-shadow: 0 .9rem 2rem rgba(16,35,63,.07);
}

.az-subjekt-packages-card__text h2 {
    margin-bottom: .45rem;
    color: #17212b;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 950;
    letter-spacing: -.04em;
}

.az-subjekt-packages-card__text p {
    max-width: 820px;
    margin-bottom: 0;
    color: #536170;
    line-height: 1.6;
}

.az-subjekt-package-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 130px;
    padding: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #10233f, #0d6efd);
    border-radius: 1rem;
}

    .az-subjekt-package-price span {
        color: rgba(255,255,255,.75);
        font-size: .78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .az-subjekt-package-price strong {
        margin: .15rem 0;
        font-size: 2.1rem;
        line-height: 1.05;
        font-weight: 950;
    }

    .az-subjekt-package-price small {
        color: rgba(255,255,255,.8);
        font-size: .9rem;
    }

.az-subjekt-package-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .75rem;
    margin-top: .9rem;
}

.az-subjekt-package-pill {
    padding: .9rem 1rem;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #dce3ea;
    border-radius: 1rem;
    box-shadow: 0 .55rem 1.2rem rgba(16,35,63,.05);
}

    .az-subjekt-package-pill span {
        display: block;
        color: #0d6efd;
        font-size: 1.45rem;
        font-weight: 950;
        line-height: 1.1;
    }

    .az-subjekt-package-pill strong {
        display: block;
        margin-top: .2rem;
        color: #17212b;
        font-size: .9rem;
    }

.az-subjekt-packages-note {
    margin: .75rem 0 0;
    color: #6c757d;
    font-size: .92rem;
}


/* =========================================================
   PUBLIC responsive pravidla
   ========================================================= */

@media (max-width: 1100px) {
    .az-public-hero {
        grid-template-columns: 1fr;
    }

    .az-public-card-grid,
    .az-public-process-grid,
    .az-tarify-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .az-public-page {
        padding: 1rem .75rem 3rem;
    }

    .az-public-hero,
    .az-public-two-grid,
    .az-public-bottom-cta,
    .az-tarif-card__header,
    .az-subjekt-packages-card {
        grid-template-columns: 1fr;
    }

    .az-public-hero {
        padding: 1.4rem;
    }

    .az-public-hero__visual {
        display: none;
    }

    .az-public-summary-grid,
    .az-public-card-grid,
    .az-public-process-grid,
    .az-tarify-grid {
        grid-template-columns: 1fr;
    }

    .az-feature-row {
        grid-template-columns: 1fr;
    }

    .az-mini-metric-grid {
        grid-template-columns: 1fr;
    }

    .az-tarif-price {
        text-align: left;
    }

    .az-subjekt-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .az-tarif-detail-row {
        grid-template-columns: 1fr;
    }

    .az-tarif-limit-pill {
        width: 100%;
        justify-content: space-between;
    }

    .az-subjekt-package-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   PUBLIC page: Jaké změny hlídáme
   ========================================================= */

/* Pozice chipů v hero orbitu stránky sledovaných změn. */
.az-change-chip {
    min-width: 8.2rem;
}

.az-change-chip--name {
    top: 1rem;
    left: 1.6rem;
}

.az-change-chip--address {
    top: 2.4rem;
    right: .8rem;
}

.az-change-chip--body {
    right: 2.2rem;
    bottom: 2rem;
}

.az-change-chip--acting {
    bottom: 1rem;
    left: .4rem;
}

/* Karty sledovaných oblastí změn. */
.az-watch-card {
    padding: 1rem;
    background: #fff;
    border: 1px solid #dce3ea;
    border-top: 5px solid #0d6efd;
    border-radius: 1.1rem;
    box-shadow: 0 .7rem 1.5rem rgba(16,35,63,.05);
}

.az-watch-card--important {
    background: radial-gradient(circle at 100% 0, rgba(13,110,253,.12), transparent 28%), #fff;
}

.az-watch-card__code {
    display: inline-flex;
    margin-bottom: .7rem;
    padding: .25rem .6rem;
    color: #084298;
    background: #eef5ff;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .04em;
}

.az-watch-card h3 {
    margin-bottom: .45rem;
    color: #17212b;
    font-size: 1.15rem;
    font-weight: 950;
}

.az-watch-card p {
    margin-bottom: .8rem;
    color: #536170;
    line-height: 1.55;
}

.az-watch-card span {
    display: block;
    padding: .55rem .65rem;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e7edf3;
    border-radius: .75rem;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.4;
}

/* Porovnání předchozího a aktuálního stavu. */
.az-state-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: .7rem;
    align-items: center;
    margin-top: 1rem;
}

    .az-state-compare div {
        padding: .85rem;
        background: #f8fafc;
        border: 1px solid #e7edf3;
        border-radius: .9rem;
    }

    .az-state-compare span {
        display: block;
        color: #6c757d;
        font-size: .75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .az-state-compare strong {
        display: block;
        color: #17212b;
        font-size: 1rem;
    }

.az-state-compare__arrow {
    color: #0d6efd;
    font-size: 1.8rem;
    font-weight: 950;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.az-state-compare__result {
    grid-column: 1 / -1;
    background: #eef5ff !important;
    border-color: #b6d4fe !important;
}

/* Příklady použití podle agendy. */
.az-agenda-use-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
    margin-bottom: 2rem;
}

.az-agenda-use-card {
    padding: 1rem;
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 1.1rem;
    box-shadow: 0 .7rem 1.5rem rgba(16,35,63,.05);
}

    .az-agenda-use-card strong {
        display: block;
        margin-bottom: .45rem;
        color: #17212b;
        font-size: 1.05rem;
        font-weight: 950;
    }

    .az-agenda-use-card p {
        margin-bottom: .8rem;
        color: #536170;
        line-height: 1.55;
    }

    .az-agenda-use-card span {
        display: block;
        padding: .5rem .6rem;
        color: #084298;
        background: #eef5ff;
        border: 1px solid #b6d4fe;
        border-radius: .75rem;
        font-size: .86rem;
        font-weight: 800;
        line-height: 1.4;
    }

@media (max-width: 1100px) {
    .az-agenda-use-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .az-agenda-use-grid {
        grid-template-columns: 1fr;
    }

    .az-state-compare {
        grid-template-columns: 1fr;
    }

    .az-state-compare__arrow {
        display: none;
    }
}
/* =========================================================
   PUBLIC page: Jak funguje služba
   ========================================================= */

/* Pozice chipů v hero orbitu stránky Jak funguje. */
.az-how-visual-chip {
    min-width: 8.8rem;
}

.az-how-visual-chip--subject {
    top: 1rem;
    left: 1.6rem;
}

.az-how-visual-chip--snapshot {
    top: 2.4rem;
    right: .8rem;
}

.az-how-visual-chip--change {
    right: 2.2rem;
    bottom: 2rem;
}

.az-how-visual-chip--email {
    bottom: 1rem;
    left: .4rem;
}

/* Procesní mapa této stránky má pět kroků. */
.az-process-map {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.az-process-step {
    min-height: 210px;
}

/* Delší popisek v řádcích vlastností. */
.az-feature-row--wide-label {
    grid-template-columns: 150px 1fr;
}

/* Karty s informací, co služba neřeší. */
.az-not-do-card {
    border-top-color: #6c757d;
}

@media (max-width: 1100px) {
    .az-process-map {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .az-process-map {
        grid-template-columns: 1fr;
    }

    .az-feature-row--wide-label {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   PUBLIC page: Jaký tarif zvolit
   ========================================================= */

/* Tato stránka má vyšší hero a užší hlavní nadpis. */
.az-public-hero--tarif-choice {
    min-height: 430px;
}

    .az-public-hero--tarif-choice h1 {
        max-width: 680px;
        font-size: clamp(2.3rem, 5vw, 4.5rem);
    }

    .az-public-hero--tarif-choice p {
        max-width: 720px;
    }

/* Orbit ve výběru tarifu je o něco vyšší než obecný orbit. */
.az-tarif-orbit {
    min-height: 330px;
}

.az-orbit-core {
    width: 210px;
}

    .az-orbit-core strong {
        font-size: 1.45rem;
    }

.az-orbit-chip {
    min-width: 7rem;
    font-weight: 950;
}

.az-orbit-chip--free {
    top: 1rem;
    left: 2rem;
}

.az-orbit-chip--basic {
    top: 2.2rem;
    right: 1.2rem;
}

.az-orbit-chip--team {
    right: 2.5rem;
    bottom: 2rem;
}

.az-orbit-chip--individual {
    bottom: 1rem;
    left: .5rem;
}

/* Výběr situace. */
.az-tarif-situations {
    margin-top: 2rem;
}

.az-section-title {
    max-width: 760px;
    margin-bottom: 1rem;
}

.az-situation-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
}

.az-situation-card {
    min-height: 170px;
    padding: 1rem;
    text-align: left;
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 1.1rem;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

    .az-situation-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 .8rem 1.7rem rgba(16,35,63,.08);
    }

    .az-situation-card.is-active {
        border-color: #0d6efd;
        box-shadow: 0 0 0 .18rem rgba(13,110,253,.14), 0 .9rem 1.8rem rgba(16,35,63,.1);
    }

    .az-situation-card span {
        display: inline-flex;
        margin-bottom: .7rem;
        padding: .25rem .6rem;
        color: #084298;
        background: #eef5ff;
        border-radius: 999px;
        font-size: .78rem;
        font-weight: 900;
    }

    .az-situation-card strong {
        display: block;
        margin-bottom: .45rem;
        color: #17212b;
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .az-situation-card small {
        color: #64707d;
        font-size: .92rem;
        line-height: 1.45;
    }

/* Tarifní panely. */
.az-tarif-panels {
    margin-top: 1.2rem;
}

.az-tarif-panel {
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 1.4rem;
    box-shadow: 0 1.1rem 3rem rgba(16,35,63,.09);
}

.az-tarif-panel--free {
    border-top: 6px solid #6c757d;
}

.az-tarif-panel--basic {
    border-top: 6px solid #198754;
}

.az-tarif-panel--team {
    border-top: 6px solid #0d6efd;
}

.az-tarif-panel--individual {
    border-top: 6px solid #212529;
}

.az-tarif-panel__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 1.25rem;
    align-items: stretch;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e7edf3;
    border-radius: 1.1rem;
}

    .az-tarif-panel__top h2 {
        margin-bottom: .25rem;
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 950;
        letter-spacing: -.05em;
    }

    .az-tarif-panel__top p {
        margin-bottom: 0;
        color: #495866;
        font-size: 1.1rem;
    }

.az-price-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #10233f, #0d6efd);
    border-radius: 1rem;
}

    .az-price-card span {
        color: rgba(255,255,255,.75);
        font-size: .78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .az-price-card strong {
        margin-top: .25rem;
        font-size: 1.35rem;
    }

.az-limit-row {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin: 1rem 0;
}

    .az-limit-row span {
        display: inline-flex;
        min-height: 2.35rem;
        align-items: center;
        padding: .4rem .75rem;
        color: #17212b;
        background: #fff;
        border: 1px solid #dce3ea;
        border-radius: 999px;
        box-shadow: 0 .35rem .9rem rgba(16,35,63,.05);
        font-size: .9rem;
        font-weight: 800;
    }

.az-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.az-panel-box {
    padding: 1.1rem;
    background: #fff;
    border: 1px solid #e7edf3;
    border-radius: 1.1rem;
}

.az-panel-box--wide {
    grid-column: 1 / -1;
}

.az-panel-box--highlight {
    background: radial-gradient(circle at 100% 0, rgba(13,110,253,.12), transparent 28%), #fff;
}

.az-panel-box h3 {
    margin-bottom: .7rem;
    font-size: 1.12rem;
    font-weight: 900;
}

.az-panel-box p {
    margin-bottom: 0;
    color: #536170;
    line-height: 1.58;
}

.az-panel-box ul {
    margin-bottom: 0;
    padding-left: 1.1rem;
}

.az-panel-box li {
    margin-bottom: .45rem;
    color: #536170;
}

/* Schéma nastavení v panelu. */
.az-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
}

.az-flow-step {
    min-height: 165px;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #dce3ea;
    border-radius: 1rem;
}

    .az-flow-step span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        margin-bottom: .8rem;
        color: #fff;
        background: #0d6efd;
        border-radius: 999px;
        font-weight: 950;
    }

    .az-flow-step strong {
        display: block;
        margin-bottom: .35rem;
        color: #17212b;
        font-size: 1.05rem;
    }

    .az-flow-step p {
        color: #536170;
    }

/* Týmové agendy v tarifu TEAM. */
.az-agenda-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
}

.az-agenda-box {
    display: grid;
    gap: .5rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #dce3ea;
    border-radius: 1rem;
}

    .az-agenda-box strong {
        display: inline-flex;
        width: fit-content;
        padding: .25rem .65rem;
        color: #fff;
        background: #10233f;
        border-radius: 999px;
        font-size: .8rem;
    }

    .az-agenda-box span,
    .az-agenda-box small {
        display: block;
        padding: .45rem .6rem;
        color: #334155;
        background: #fff;
        border: 1px solid #e7edf3;
        border-radius: .65rem;
        font-size: .82rem;
        font-weight: 700;
    }

@media (max-width: 1050px) {
    .az-situation-grid,
    .az-agenda-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .az-tarif-panel__top,
    .az-panel-grid {
        grid-template-columns: 1fr;
    }

    .az-flow {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .az-situation-grid,
    .az-agenda-grid {
        grid-template-columns: 1fr;
    }

    .az-limit-row span {
        width: 100%;
        justify-content: center;
    }
}
/* =========================================================
   PUBLIC page: Kontakt
   ========================================================= */

/* Kontaktní hero má širší středovou kartu kvůli e-mailu. */
.az-contact-core-card {
    width: 250px;
}

    .az-contact-core-card strong {
        font-size: 1.35rem;
    }

    .az-contact-core-card small {
        font-size: .86rem;
    }

/* Pozice chipů v hero orbitu stránky Kontakt. */
.az-contact-chip {
    min-width: 9.4rem;
}

.az-contact-chip--one {
    top: 1rem;
    left: 1.2rem;
}

.az-contact-chip--two {
    top: 2.4rem;
    right: .6rem;
}

.az-contact-chip--three {
    right: 2.2rem;
    bottom: 2rem;
}

.az-contact-chip--four {
    bottom: 1rem;
    left: .3rem;
}

/* Hlavní kontaktní grid. */
.az-contact-main-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 1rem;
    margin: 1.2rem 0;
}

/* Kontaktní karta používá obecný az-public-content-card.
   Třída zůstává pro případné budoucí výjimky. */
.az-contact-card h2 {
    margin-bottom: 1rem;
}

/* Seznam kontaktních údajů. */
.az-contact-detail-list {
    display: grid;
    gap: .7rem;
}

.az-contact-detail-row {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: .75rem;
    padding: .8rem;
    background: #f8fafc;
    border: 1px solid #e7edf3;
    border-radius: .85rem;
}

    .az-contact-detail-row strong {
        color: #17212b;
    }

    .az-contact-detail-row span,
    .az-contact-detail-row a {
        color: #536170;
        line-height: 1.45;
    }

    .az-contact-detail-row a {
        font-weight: 800;
        text-decoration: none;
    }

        .az-contact-detail-row a:hover {
            color: #0d6efd;
            text-decoration: underline;
        }

/* Klikací témata kontaktu. */
.az-contact-topic-list {
    display: grid;
    gap: .7rem;
}

.az-contact-topic {
    display: block;
    padding: .85rem;
    background: #f8fafc;
    border: 1px solid #e7edf3;
    border-radius: .9rem;
    text-decoration: none;
}

    .az-contact-topic:hover {
        border-color: #0d6efd;
        background: #eef5ff;
        text-decoration: none;
    }

    .az-contact-topic strong {
        display: block;
        margin-bottom: .25rem;
        color: #17212b;
    }

    .az-contact-topic span {
        color: #536170;
        line-height: 1.45;
    }

/* Kontaktní nápovědné karty mají stejné chování jako public summary grid. */
.az-contact-help-grid {
    margin-top: 0;
}

@media (max-width: 850px) {
    .az-contact-main-grid {
        grid-template-columns: 1fr;
    }

    .az-contact-detail-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PUBLIC page: Zdroj dat
   ========================================================= */

/* Pozice chipů v hero orbitu stránky Zdroj dat. */
.az-data-chip {
    min-width: 9.2rem;
}

.az-data-chip--vr {
    top: 1rem;
    left: 1.6rem;
}

.az-data-chip--subject {
    top: 2.4rem;
    right: .8rem;
}

.az-data-chip--compare {
    right: 2.2rem;
    bottom: 2rem;
}

.az-data-chip--notice {
    bottom: 1rem;
    left: .4rem;
}

/* Karty omezení mají šedý horní pruh. */
.az-limitation-card {
    border-top-color: #6c757d;
}

/* Dependency mapa zatím nepřidává nové chování,
   používá obecné .az-public-process-grid a .az-public-process-step. */
.az-dependency-step {
    min-height: 190px;
}

@media (max-width: 850px) {
    .az-dependency-map {
        grid-template-columns: 1fr;
    }
}