/* =========================================================
   WP1 – Úvodní blok
   ========================================================= */

.wp-intro {
    --wp-intro-accent: #122ca9;
    --wp-intro-accent-dark: #0d2182;
    --wp-intro-accent-light: #eef1ff;
    --wp-intro-text: #000000;
    --wp-intro-muted: #4a4a4a;
    --wp-intro-border: #d9def5;
    --wp-intro-background: #ffffff;

    padding: 55px 0;
    color: var(--wp-intro-text);
}

.wp-intro,
.wp-intro * {
    box-sizing: border-box;
}

.wp-intro__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 38px;
    padding: 38px 40px;
    border: 1px solid var(--wp-intro-border);
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        var(--wp-intro-accent-light) 100%
    );
}

.wp-intro__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--wp-intro-accent);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wp-intro__hero h1 {
    max-width: 900px;
    margin: 0 0 22px;
    padding: 0;
    color: var(--wp-intro-text);
    font-size: 40px;
    line-height: 1.18;
}

.wp-intro__hero h1::after {
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 20px;
    background: var(--wp-intro-accent);
    content: "";
}

.wp-intro__hero-text p {
    max-width: 920px;
    margin: 0 0 16px;
    padding: 0;
    color: var(--wp-intro-muted);
    font-size: 17px;
    line-height: 1.7;
}

.wp-intro__hero-text p:last-child {
    margin-bottom: 0;
}

.wp-intro__principles {
    padding: 26px;
    border: 1px solid var(--wp-intro-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(18, 44, 169, 0.06);
}

.wp-intro__principles h2 {
    margin: 0 0 18px;
    padding: 0;
    color: var(--wp-intro-text);
    font-size: 20px;
    line-height: 1.35;
}

.wp-intro__principles ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.wp-intro__principles li {
    position: relative;
    margin: 12px 0 !important;
    padding: 0 0 0 30px !important;
    color: var(--wp-intro-text);
    font-size: 15px;
    line-height: 1.5;
    list-style: none !important;
}

.wp-intro__principles li::marker {
    content: "";
    font-size: 0;
}

.wp-intro__principles li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--wp-intro-accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    content: "✓";
}

.wp-intro__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.wp-intro__card {
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 25px;
    border: 1px solid var(--wp-intro-border);
    border-radius: 10px;
    background: var(--wp-intro-background);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.wp-intro__card:hover {
    border-color: #b7c2ed;
    box-shadow: 0 8px 22px rgba(18, 44, 169, 0.07);
    transform: translateY(-2px);
}

.wp-intro__card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.wp-intro__icon {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 9px;
    background: var(--wp-intro-accent-light);
    color: var(--wp-intro-accent);
}

.wp-intro__icon svg {
    display: block;
    width: 27px;
    height: 27px;
    stroke: currentColor;
}

.wp-intro__card h3 {
    margin: 0;
    padding: 0;
    color: var(--wp-intro-text);
    font-size: 20px;
    line-height: 1.3;
}

.wp-intro__card p {
    margin: 0;
    padding: 0;
    color: var(--wp-intro-muted);
    font-size: 15px;
    line-height: 1.65;
}

.wp-intro__footer {
    margin-top: 28px;
    padding: 20px 24px;
    border-left: 4px solid var(--wp-intro-accent);
    border-radius: 0 8px 8px 0;
    background: var(--wp-intro-accent-light);
}

.wp-intro__footer p {
    margin: 0;
    padding: 0;
    color: var(--wp-intro-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 1100px) {
    .wp-intro__hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wp-intro__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobil */
@media (max-width: 767px) {
    .wp-intro {
        padding: 38px 0;
    }

    .wp-intro__hero {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 28px;
        padding: 26px 22px;
    }

    .wp-intro__hero h1 {
        font-size: 30px;
    }

    .wp-intro__hero-text p {
        font-size: 15px;
    }

    .wp-intro__principles {
        padding: 21px;
    }

    .wp-intro__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .wp-intro__card {
        height: auto;
        min-height: 0;
        padding: 21px;
    }

    .wp-intro__card-header {
        align-items: flex-start;
    }

    .wp-intro__card h3 {
        font-size: 19px;
    }
}


/* =========================================================
   REALIZOVANÉ WEBY
   ========================================================= */

.wp1-portfolio {
    padding: 72px 32px;
    background: #f6f8ff;
    border-radius: 24px;
}

.wp1-portfolio__header {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.wp1-portfolio__eyebrow {
    margin: 0 0 12px;
    color: #122ca9;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wp1-portfolio__header h2 {
    margin: 0 0 16px;
    color: #101827;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.wp1-portfolio__intro {
    max-width: 720px;
    margin: 0 auto;
    color: #545d6d;
    font-size: 18px;
    line-height: 1.7;
}

/* Mřížka karet */

.wp1-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.wp1-portfolio-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(18, 44, 169, 0.09);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(16, 24, 39, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.wp1-portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(16, 24, 39, 0.13);
}

/* Obrázky */

.wp1-portfolio-card__image-link {
    display: block;
    overflow: hidden;
    background: #ffffff;
}

.wp1-portfolio-card__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.wp1-portfolio-card:hover .wp1-portfolio-card__image {
    transform: scale(1.025);
}

/* Obsah karet */

.wp1-portfolio-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px 26px 28px;
    text-align: center;
}

.wp1-portfolio-card__content h3 {
    margin: 0 0 8px;
    color: #122ca9;
    font-size: 24px;
    line-height: 1.25;
}

.wp1-portfolio-card__type {
    margin: 0 0 16px;
    color: #9a6500;
    font-size: 16px;
    font-weight: 600;
}

.wp1-portfolio-card__content > p:not(.wp1-portfolio-card__type) {
    margin: 0 0 22px;
    color: #535c6c;
    font-size: 15px;
    line-height: 1.65;
}

/* Štítky */

.wp1-portfolio-card__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 20px;
}

.wp1-portfolio-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    color: #122ca9;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    background: #f7f9ff;
    border: 1px solid rgba(18, 44, 169, 0.28);
    border-radius: 8px;
}

/* Odkaz na web */

.wp1-portfolio-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #122ca9 !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.wp1-portfolio-card__link:hover {
    text-decoration: underline;
}

/* Spodní tlačítko */

.wp1-portfolio__footer {
    margin-top: 34px;
    text-align: center;
}

.wp1-portfolio__footer .wp1-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 24px;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background: #122ca9;
    border: 2px solid #122ca9;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(18, 44, 169, 0.18);
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.wp1-portfolio__footer .wp1-button:hover {
    background: #0e2388;
    border-color: #0e2388;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(18, 44, 169, 0.24);
}

/* Tablet */

@media (max-width: 980px) {
    .wp1-portfolio {
        padding: 58px 24px;
    }

    .wp1-portfolio__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wp1-portfolio-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 12px);
        justify-self: center;
    }
}

/* Mobil */

@media (max-width: 767px) {
    .wp1-portfolio {
        padding: 44px 16px;
        border-radius: 18px;
    }

    .wp1-portfolio__header {
        margin-bottom: 28px;
    }

    .wp1-portfolio__header h2 {
        font-size: 30px;
    }

    .wp1-portfolio__intro {
        font-size: 16px;
        line-height: 1.6;
    }

    .wp1-portfolio__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wp1-portfolio-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .wp1-portfolio-card__content {
        padding: 22px 18px 24px;
    }

    .wp1-portfolio-card__content h3 {
        font-size: 22px;
    }

    .wp1-portfolio-card__image {
        aspect-ratio: 3 / 2;
    }

    .wp1-portfolio__footer .wp1-button {
        width: 100%;
    }
}



/* =========================================================
   WP1 – Co je součástí vytvoření webu
   ========================================================= */

.wp-included {
    --wp-included-accent: #122ca9;
    --wp-included-accent-dark: #0d2182;
    --wp-included-accent-light: #eef1ff;
    --wp-included-text: #000000;
    --wp-included-muted: #4a4a4a;
    --wp-included-border: #d9def5;
    --wp-included-background: #ffffff;

    padding: 55px 0;
    color: var(--wp-included-text);
}

.wp-included,
.wp-included * {
    box-sizing: border-box;
}

.wp-included__header {
    max-width: 950px;
    margin-bottom: 34px;
}

.wp-included__header h2 {
    margin: 0 0 14px;
    padding: 0;
    color: var(--wp-included-text);
    font-size: 34px;
    line-height: 1.2;
}

.wp-included__header h2::after {
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 14px;
    background: var(--wp-included-accent);
    content: "";
}

.wp-included__header p {
    margin: 0 0 12px;
    padding: 0;
    color: var(--wp-included-muted);
    font-size: 16px;
    line-height: 1.7;
}

.wp-included__header p:last-child {
    margin-bottom: 0;
}

.wp-included__summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.wp-included__summary-item {
    position: relative;
    min-width: 0;
    padding: 18px 18px 18px 49px;
    border: 1px solid var(--wp-included-border);
    border-radius: 8px;
    background: var(--wp-included-accent-light);
    color: var(--wp-included-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.wp-included__summary-item::before {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--wp-included-accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    content: "✓";
}

.wp-included__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.wp-included__card {
    min-width: 0;
    padding: 26px;
    border: 1px solid var(--wp-included-border);
    border-radius: 10px;
    background: var(--wp-included-background);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.wp-included__card:hover {
    border-color: #b9c4ed;
    box-shadow: 0 8px 22px rgba(18, 44, 169, 0.07);
    transform: translateY(-2px);
}

.wp-included__card--wide {
    grid-column: 1 / -1;
}

.wp-included__card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.wp-included__icon {
    display: flex;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: var(--wp-included-accent-light);
    color: var(--wp-included-accent);
}

.wp-included__icon svg {
    width: 25px;
    height: 25px;
    stroke: currentColor;
}

.wp-included__card h3 {
    margin: 0;
    padding: 0;
    color: var(--wp-included-text);
    font-size: 21px;
    line-height: 1.3;
}

.wp-included__card h4 {
    margin: 22px 0 10px;
    padding: 0;
    color: var(--wp-included-text);
    font-size: 17px;
    line-height: 1.35;
}

.wp-included__card p {
    margin: 0 0 14px;
    padding: 0;
    color: var(--wp-included-muted);
    font-size: 15px;
    line-height: 1.65;
}

.wp-included__card p:last-child {
    margin-bottom: 0;
}

.wp-included__card ul {
    margin: 0 0 16px !important;
    padding: 0 !important;
    list-style: none !important;
}

.wp-included__card ul:last-child {
    margin-bottom: 0 !important;
}

.wp-included__card li {
    position: relative;
    margin: 7px 0 !important;
    padding: 0 0 0 20px !important;
    color: var(--wp-included-text);
    font-size: 14px;
    line-height: 1.5;
    list-style: none !important;
}

.wp-included__card li::marker {
    content: "";
    font-size: 0;
}

.wp-included__card li::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wp-included-accent);
    content: "";
}

.wp-included__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.wp-included__box {
    padding: 21px;
    border-radius: 8px;
    background: #f8f9ff;
}

.wp-included__box h4 {
    margin-top: 0;
}

.wp-included__note {
    margin-top: 18px;
    padding: 17px 20px;
    border-left: 3px solid var(--wp-included-accent);
    border-radius: 0 7px 7px 0;
    background: var(--wp-included-accent-light);
}

.wp-included__note p {
    margin: 0;
    color: var(--wp-included-text);
}

.wp-included__launch {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px solid var(--wp-included-border);
    border-radius: 10px;
    background: var(--wp-included-accent-light);
}

.wp-included__launch .wp-included__card-header {
    margin-bottom: 16px;
}

.wp-included__launch-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 22px;
    margin-top: 20px;
}

.wp-included__launch-item {
    position: relative;
    padding-left: 25px;
    color: var(--wp-included-text);
    font-size: 14px;
    line-height: 1.5;
}

.wp-included__launch-item::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--wp-included-accent);
    font-size: 17px;
    font-weight: 700;
    content: "✓";
}

.wp-included__conclusion {
    grid-column: 1 / -1;
    margin: 0;
    padding: 20px 24px;
    border-top: 1px solid var(--wp-included-border);
    border-bottom: 1px solid var(--wp-included-border);
    color: var(--wp-included-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
    text-align: center;
}

/* Tablet */
@media (max-width: 980px) {
    .wp-included__summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wp-included__launch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobil */
@media (max-width: 767px) {
    .wp-included {
        padding: 38px 0;
    }

    .wp-included__header {
        margin-bottom: 28px;
    }

    .wp-included__header h2 {
        font-size: 28px;
    }

    .wp-included__header p {
        font-size: 15px;
    }

    .wp-included__summary,
    .wp-included__grid,
    .wp-included__columns,
    .wp-included__launch-grid {
        grid-template-columns: 1fr;
    }

    .wp-included__card--wide,
    .wp-included__launch,
    .wp-included__conclusion {
        grid-column: auto;
    }

    .wp-included__card,
    .wp-included__launch {
        padding: 21px;
    }

    .wp-included__card-header {
        align-items: flex-start;
    }

    .wp-included__card h3 {
        font-size: 19px;
    }
}


.wp-maintenance {
    --wp-maintenance-accent: #122ca9;
    --wp-maintenance-accent-dark: #0d2182;
    --wp-maintenance-accent-light: #eef1ff;
    --wp-maintenance-text: #000000;
    --wp-maintenance-muted: #4a4a4a;
    --wp-maintenance-border: #d9def5;
    --wp-maintenance-background: #ffffff;
    padding: 55px 0;
    color: var(--wp-maintenance-text);
}

.wp-maintenance,
.wp-maintenance * {
    box-sizing: border-box;
}

.wp-maintenance__header {
    max-width: 950px;
    margin-bottom: 34px;
}

.wp-maintenance__header h2 {
    margin: 0 0 14px;
    padding: 0;
    color: var(--wp-maintenance-text);
    font-size: 34px;
    line-height: 1.2;
}

.wp-maintenance__header h2::after {
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 14px;
    background: var(--wp-maintenance-accent);
    content: "";
}

.wp-maintenance__header p {
    margin: 0 0 12px;
    padding: 0;
    color: var(--wp-maintenance-muted);
    font-size: 16px;
    line-height: 1.7;
}

.wp-maintenance__header p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   WP1 – Následná správa webu
   ========================================================= */

.wp-maintenance {
    --wp-maintenance-accent: #122ca9;
    --wp-maintenance-accent-dark: #0d2182;
    --wp-maintenance-accent-light: #eef1ff;
    --wp-maintenance-text: #000000;
    --wp-maintenance-muted: #4a4a4a;
    --wp-maintenance-border: #d9def5;
    --wp-maintenance-background: #ffffff;

    padding: 55px 0;
    color: var(--wp-maintenance-text);
}

.wp-maintenance,
.wp-maintenance * {
    box-sizing: border-box;
}


/* =========   Záhlaví sekce  ===== */

.wp-maintenance__header {
    max-width: 950px;
    margin-bottom: 34px;
}

.wp-maintenance__header h2 {
    margin: 0 0 14px;
    padding: 0;
    color: var(--wp-maintenance-text);
    font-size: 34px;
    line-height: 1.2;
}

.wp-maintenance__header h2::after {
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 14px;
    background: var(--wp-maintenance-accent);
    content: "";
}

.wp-maintenance__header p {
    margin: 0 0 12px;
    padding: 0;
    color: var(--wp-maintenance-muted);
    font-size: 16px;
    line-height: 1.7;
}

.wp-maintenance__header p:last-child {
    margin-bottom: 0;
}


/* ======  Přehled hlavních oblastí následné správy ===== */

.wp-maintenance__overview {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.wp-maintenance__overview-item {
    min-width: 0;
    padding: 26px 16px 24px;
    border: 1px solid var(--wp-maintenance-border);
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        var(--wp-maintenance-accent-light) 100%
    );
    text-align: center;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.wp-maintenance__overview-item:hover {
    border-color: #b9c4ed;
    box-shadow: 0 8px 22px rgba(18, 44, 169, 0.07);
    transform: translateY(-2px);
}

/* Větší podklad ikony */
.wp-maintenance__overview-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 19px;
    border-radius: 16px;
    background: #ffffff;
    color: var(--wp-maintenance-accent);
    box-shadow: 0 7px 20px rgba(18, 44, 169, 0.08);
}

/* Větší ikona a jemnější tah */
.wp-maintenance__overview-icon svg {
    display: block;
    width: 46px;
    height: 46px;
    stroke: currentColor;
    stroke-width: 1.45;
}

.wp-maintenance__overview-item h3 {
    margin: 0 0 12px;
    padding: 0;
    color: var(--wp-maintenance-text);
    font-size: 17px;
    line-height: 1.35;
}

.wp-maintenance__overview-item p {
    margin: 0;
    padding: 0;
    color: var(--wp-maintenance-muted);
    font-size: 14px;
    line-height: 1.55;
}


/* ====   Hlavní mřížka podrobných karet  ===== */

.wp-maintenance__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.wp-maintenance__card {
    min-width: 0;
    padding: 26px;
    border: 1px solid var(--wp-maintenance-border);
    border-radius: 10px;
    background: var(--wp-maintenance-background);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.wp-maintenance__card:hover {
    border-color: #b9c4ed;
    box-shadow: 0 8px 22px rgba(18, 44, 169, 0.07);
    transform: translateY(-2px);
}

.wp-maintenance__card--wide {
    grid-column: 1 / -1;
}

.wp-maintenance__card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.wp-maintenance__icon {
    display: flex;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: var(--wp-maintenance-accent-light);
    color: var(--wp-maintenance-accent);
}

.wp-maintenance__icon svg {
    display: block;
    width: 25px;
    height: 25px;
    stroke: currentColor;
    stroke-width: 1.65;
}

.wp-maintenance__card h3 {
    margin: 0;
    padding: 0;
    color: var(--wp-maintenance-text);
    font-size: 21px;
    line-height: 1.3;
}

.wp-maintenance__card h4 {
    margin: 22px 0 10px;
    padding: 0;
    color: var(--wp-maintenance-text);
    font-size: 17px;
    line-height: 1.35;
}

.wp-maintenance__card p {
    margin: 0 0 14px;
    padding: 0;
    color: var(--wp-maintenance-muted);
    font-size: 15px;
    line-height: 1.65;
}

.wp-maintenance__card p:last-child {
    margin-bottom: 0;
}

.wp-maintenance__card ul {
    margin: 0 0 16px !important;
    padding: 0 !important;
    list-style: none !important;
}

.wp-maintenance__card ul:last-child {
    margin-bottom: 0 !important;
}

.wp-maintenance__card li {
    position: relative;
    margin: 7px 0 !important;
    padding: 0 0 0 20px !important;
    color: var(--wp-maintenance-text);
    font-size: 14px;
    line-height: 1.5;
    list-style: none !important;
}

.wp-maintenance__card li::marker {
    content: "";
    font-size: 0;
}

.wp-maintenance__card li::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wp-maintenance-accent);
    content: "";
}


/* =======   Poznámky  ===== */

.wp-maintenance__note {
    margin-top: 18px;
    padding: 18px 20px;
    border-left: 3px solid var(--wp-maintenance-accent);
    border-radius: 0 7px 7px 0;
    background: var(--wp-maintenance-accent-light);
}

.wp-maintenance__note p {
    margin: 0;
    color: var(--wp-maintenance-text);
}


/* ======  Dvousloupcové pomocné bloky  ===== */

.wp-maintenance__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.wp-maintenance__box {
    padding: 22px;
    border-radius: 8px;
    background: #f8f9ff;
}

.wp-maintenance__box h4 {
    margin-top: 0;
}


/* =======  Rozvoj webu  ===== */

.wp-maintenance__development {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px solid var(--wp-maintenance-border);
    border-radius: 10px;
    background: var(--wp-maintenance-accent-light);
}

.wp-maintenance__development .wp-maintenance__card-header {
    margin-bottom: 16px;
}

.wp-maintenance__development-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 22px;
    margin-top: 20px;
}

.wp-maintenance__development-item {
    position: relative;
    padding-left: 25px;
    color: var(--wp-maintenance-text);
    font-size: 14px;
    line-height: 1.5;
}

.wp-maintenance__development-item::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--wp-maintenance-accent);
    font-size: 17px;
    font-weight: 700;
    content: "✓";
}


/* ======  Dlouhodobá kontinuita   ====== */

.wp-maintenance__continuity {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px solid var(--wp-maintenance-border);
    border-radius: 10px;
    background: #ffffff;
}

.wp-maintenance__continuity-content {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 28px;
    align-items: center;
}

.wp-maintenance__continuity-text p {
    margin: 0 0 14px;
}

.wp-maintenance__continuity-text p:last-child {
    margin-bottom: 0;
}

.wp-maintenance__continuity-points {
    padding: 22px;
    border-radius: 8px;
    background: var(--wp-maintenance-accent-light);
}

.wp-maintenance__continuity-points ul {
    margin: 0 !important;
}


/* =====   Závěr    ====== */

.wp-maintenance__conclusion {
    grid-column: 1 / -1;
    margin: 0;
    padding: 20px 24px;
    border-top: 1px solid var(--wp-maintenance-border);
    border-bottom: 1px solid var(--wp-maintenance-border);
    color: var(--wp-maintenance-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
    text-align: center;
}


/* =======   Menší desktop a tablet    ====== */

@media (max-width: 1180px) {
    .wp-maintenance__overview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .wp-maintenance__development-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wp-maintenance__continuity-content {
        grid-template-columns: 1fr;
    }
}


/* ========   Mobil   ====== */

@media (max-width: 767px) {
    .wp-maintenance {
        padding: 38px 0;
    }

    .wp-maintenance__header {
        margin-bottom: 28px;
    }

    .wp-maintenance__header h2 {
        font-size: 28px;
    }

    .wp-maintenance__header p {
        font-size: 15px;
    }

    .wp-maintenance__overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .wp-maintenance__overview-item {
        padding: 20px 11px;
    }

    .wp-maintenance__overview-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 14px;
        border-radius: 13px;
    }

    .wp-maintenance__overview-icon svg {
        width: 37px;
        height: 37px;
        stroke-width: 1.45;
    }

    .wp-maintenance__overview-item h3 {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .wp-maintenance__overview-item p {
        font-size: 12.5px;
        line-height: 1.45;
    }

    .wp-maintenance__grid,
    .wp-maintenance__columns,
    .wp-maintenance__development-grid {
        grid-template-columns: 1fr;
    }

    .wp-maintenance__card--wide,
    .wp-maintenance__development,
    .wp-maintenance__continuity,
    .wp-maintenance__conclusion {
        grid-column: auto;
    }

    .wp-maintenance__card,
    .wp-maintenance__development,
    .wp-maintenance__continuity {
        padding: 21px;
    }

    .wp-maintenance__card-header {
        align-items: flex-start;
    }

    .wp-maintenance__card h3 {
        font-size: 19px;
    }
}


/* ======   Velmi úzké mobilní telefony   ====== */

@media (max-width: 420px) {
    .wp-maintenance__overview {
        grid-template-columns: 1fr;
    }

    .wp-maintenance__overview-item {
        display: grid;
        grid-template-columns: 62px minmax(0, 1fr);
        column-gap: 15px;
        align-items: center;
        padding: 15px;
        text-align: left;
    }

    .wp-maintenance__overview-icon {
        grid-row: 1 / span 2;
        width: 62px;
        height: 62px;
        margin: 0;
    }

    .wp-maintenance__overview-icon svg {
        width: 37px;
        height: 37px;
    }

    .wp-maintenance__overview-item h3 {
        margin-bottom: 4px;
    }
}

/* END WP1 – Následná správa webu */
/* =========================================================
   WP1 – Jak probíhá vytvoření webu
   ========================================================= */

.wp-process {
    --wp-process-accent: #122ca9;
    --wp-process-accent-dark: #122ca9;
    --wp-process-accent-light: #eef5fb;
    --wp-process-text: #000000;
    --wp-process-muted: #000000;
    --wp-process-border: #d5e1ed;

    padding: 55px 0;
    color: var(--wp-process-text);
}

.wp-process,
.wp-process * {
    box-sizing: border-box;
}

.wp-process__header {
    max-width: 850px;
    margin-bottom: 42px;
}

.wp-process__header h2 {
    margin: 0 0 14px;
    padding: 0;
    color: var(--wp-process-text);
    font-size: 34px;
    line-height: 1.2;
}

.wp-process__header h2::after {
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 14px;
    background: var(--wp-process-accent);
    content: "";
}

.wp-process__header p {
    margin: 0;
    padding: 0;
    color: var(--wp-process-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Seznam kroků */
ol.wp-process__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 24px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    counter-reset: wp-process-step;
}

ol.wp-process__list > li.wp-process__step {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    counter-increment: wp-process-step;
}

ol.wp-process__list > li.wp-process__step::marker {
    content: "";
    font-size: 0;
}

ol.wp-process__list > li.wp-process__step::before {
    display: none !important;
    content: none !important;
}

.wp-process__marker {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0 18px;
    padding: 0;
}

.wp-process__number {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--wp-process-accent);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(47, 111, 179, 0.18);
}

.wp-process__number::before {
    content: counter(wp-process-step);
}

.wp-process__line {
    width: 100%;
    height: 1px;
    margin-left: 12px;
    background: var(--wp-process-border);
}

.wp-process__step:nth-child(4n) .wp-process__line,
.wp-process__step:last-child .wp-process__line {
    display: none;
}

.wp-process__content {
    flex: 1 1 auto;
    height: 100%;
    padding: 22px;
    border: 1px solid var(--wp-process-border);
    border-radius: 8px;
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.wp-process__content:hover {
    border-color: #b7cee5;
    box-shadow: 0 8px 22px rgba(31, 71, 112, 0.08);
    transform: translateY(-2px);
}

.wp-process__content h3 {
    margin: 0 0 12px;
    padding: 0;
    color: var(--wp-process-text);
    font-size: 19px;
    line-height: 1.35;
}

.wp-process__content p {
    margin: 0 0 16px;
    padding: 0;
    color: var(--wp-process-muted);
    font-size: 15px;
    line-height: 1.65;
}

.wp-process__content ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.wp-process__content li {
    position: relative;
    margin: 7px 0 !important;
    padding: 0 0 0 19px !important;
    color: var(--wp-process-text);
    font-size: 14px;
    line-height: 1.5;
    list-style: none !important;
}

.wp-process__content li::marker {
    content: "";
    font-size: 0;
}

.wp-process__content li::before {
    position: absolute;
    top: 8px;
    left: 0;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wp-process-accent);
    content: "";
}

/* Tablet */
@media (max-width: 1100px) {
    ol.wp-process__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wp-process__step:nth-child(4n) .wp-process__line {
        display: block;
    }

    .wp-process__step:nth-child(2n) .wp-process__line,
    .wp-process__step:last-child .wp-process__line {
        display: none;
    }
}

/* Mobil */
@media (max-width: 767px) {
    .wp-process {
        padding: 38px 0;
    }

    .wp-process__header {
        margin-bottom: 30px;
    }

    .wp-process__header h2 {
        font-size: 28px;
    }

    .wp-process__header p {
        font-size: 15px;
    }

    ol.wp-process__list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .wp-process__marker {
        margin-bottom: 12px;
    }

    .wp-process__number {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 16px;
    }

    .wp-process__line {
        display: none !important;
    }

    .wp-process__content {
        padding: 20px;
    }
}

/* END WP1 – Jak probíhá vytvoření webu */
