:root {
    --bg: #0F172A;
    --panel: #111C33;
    --text: #E5E7EB;
    --muted: #9CA3AF;
    --orange: #F97316;
    --blue: #38BDF8;
    --border: rgba(255, 255, 255, .08);
    --shadow: 0 18px 40px rgba(0, 0, 0, .35);
    --radius: 18px;
    --max: 1100px;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    background:
        radial-gradient(1200px 600px at 20% 0%, rgba(56, 189, 248, .12), transparent 60%),
        radial-gradient(1000px 700px at 80% 10%, rgba(249, 115, 22, .10), transparent 55%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px
}

.muted {
    color: rgba(229, 231, 235, .72)
}

.h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    margin: 0 0 12px
}

.h2 {
    font-size: clamp(24px, 3.5vw, 34px);
    line-height: 1.2;
    margin: 0 0 10px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, .72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
}

.brand-name {
    font-weight: 800;
    letter-spacing: .3px
}

.brand-tag {
    font-size: 13px;
    color: rgba(229, 231, 235, .65)
}

.menu {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0
}

.menu a {
    color: rgba(229, 231, 235, .85)
}

.menu a:hover {
    color: var(--blue)
}

.menu-item-cta>a {
    background: var(--orange);
    color: #0b1220 !important;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(229, 231, 235, .8);
    margin: 5px 0;
    border-radius: 2px
}

.site-main {
    padding: 26px 0 60px
}

.cwp-card {
    background: rgba(17, 28, 51, .85);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    gap: 10px;
}

.btn-primary {
    background: var(--orange);
    color: #0b1220
}

.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: rgba(229, 231, 235, .9)
}

.btn-ghost:hover {
    border-color: rgba(56, 189, 248, .35)
}

.hero {
    padding: 18px 0 0
}

.hero-inner {
    display: flex;
    gap: 18px;
    align-items: stretch;
    flex-wrap: wrap
}

.hero-left {
    flex: 1;
    min-width: 280px;
    padding: 18px 0
}

.hero-left h1 {
    font-size: clamp(36px, 5.5vw, 62px);
    line-height: 1.05;
    margin: 8px 0 12px
}

.lead {
    max-width: 560px;
    font-size: 18px;
    color: rgba(229, 231, 235, .78)
}

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

.badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .05);
    color: rgba(229, 231, 235, .86);
    font-weight: 700;
}

.glow {
    position: relative;
    overflow: hidden
}

.glow:before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(500px 180px at 20% 0%, rgba(56, 189, 248, .16), transparent 60%),
        radial-gradient(500px 180px at 80% 0%, rgba(249, 115, 22, .16), transparent 60%);
    pointer-events: none;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative
}

.mini-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    position: relative;
}

.mini-title {
    font-weight: 900
}

.orange {
    color: var(--orange)
}

.blue {
    color: var(--blue)
}

.section {
    padding: 26px 0
}

.section-head {
    margin-bottom: 14px
}

.section-head h2 {
    margin: 0 0 6px
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.cards-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.ph {
    height: 140px;
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, .18);
    display: grid;
    place-items: center;
    color: rgba(229, 231, 235, .6);
    background: rgba(255, 255, 255, .03);
}

.map {
    height: 260px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .03);
    display: grid;
    place-items: center;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: rgba(15, 23, 42, .72);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.footer-title {
    font-weight: 900
}

.footer-text {
    color: rgba(229, 231, 235, .68);
    font-size: 14px
}

@media (max-width: 860px) {
    .cards-3 {
        grid-template-columns: 1fr
    }

    .cards-2 {
        grid-template-columns: 1fr
    }

    .gallery {
        grid-template-columns: 1fr 1fr
    }

    .menu {
        display: none
    }

    .nav-toggle {
        display: block
    }

    .nav.open .menu {
        display: flex;
        flex-direction: column;
        padding: 12px;
        background: rgba(17, 28, 51, .95);
        border: 1px solid var(--border);
        border-radius: 16px;
        position: absolute;
        right: 18px;
        top: 62px;
        width: min(260px, calc(100vw - 36px))
    }
}

/* Oranžové zvýraznenia */
:root {
    --accent: var(--orange);
}

/* Aktívna položka menu + hover */
.menu a:hover {
    color: var(--orange);
}

.menu .current-menu-item>a,
.menu .current_page_item>a {
    color: var(--orange);
}

/* Jemná oranžová linka pod nadpismi */
.section-head h2,
article h1,
article h2,
article h3 {
    position: relative;
}

.section-head h2::after,
article h1::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: .95;
}

/* Karty - oranžový glow pri hover */
.cwp-card {
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.cwp-card:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 115, 22, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35), 0 0 0 1px rgba(249, 115, 22, .12);
}

/* Oranžové zvýraznenie dátumu/meta textu (napr. December 22...) */
.muted strong,
time,
.entry-date {
    color: rgba(249, 115, 22, .9);
}

/* Logo v hlavičke nech je pekne zarovnané a nie obrovské */
.brand-logo img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

/* ===== HEADER: logo + text bližšie, menu viac do stredu ===== */

/* zmenšíme medzeru medzi logom a textom */
.brand {
    gap: 8px;
    /* bolo 12px */
}

/* názov + slogan bližšie k sebe */
.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* zlepí názov a slogan */
    line-height: 1.15;
}

/* menu do stredu: nav nech zaberie voľné miesto */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    /* menu do stredu */
}

/* väčšie medzery medzi položkami */
.menu {
    gap: 34px;
    /* bolo 18px, uprav podľa vkusu 28–42 */
}

/* trošku väčšie písmo v menu */
.menu a {
    font-size: 16px;
}

/* aby to na menších obrazovkách nepretieklo */
@media (max-width: 980px) {
    .nav {
        justify-content: flex-end;
    }

    /* keď je úzke, nech je doprava */
    .menu {
        gap: 18px;
    }
}

/* ===== MENU – väčšie rozostupy (premium look) ===== */

.menu {
    gap: 60px;
    /* bolo 34px → teraz výraznejšie */
}

/* mierne väčšie písmo + lepšia čitateľnosť */
.menu a {
    font-size: 16.5px;
    letter-spacing: .4px;
    /* jemný „luxusný“ spacing */
}

/* CTA položka nech má okolo seba ešte viac miesta */
.menu-item-cta {
    margin-left: 10px;
}

/* ===== WPForms – Dark theme styling ===== */

.wpforms-container {
    max-width: 100%;
}

/* Inputy */
.wpforms-container input[type=text],
.wpforms-container input[type=email],
.wpforms-container textarea {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 14px;
    padding: 12px 14px;
}

.wpforms-container input::placeholder,
.wpforms-container textarea::placeholder {
    color: rgba(229, 231, 235, .45);
}

/* Focus */
.wpforms-container input:focus,
.wpforms-container textarea:focus {
    outline: none;
    border-color: rgba(249, 115, 22, .6);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, .25);
}

/* Label */
.wpforms-container .wpforms-field-label {
    color: rgba(229, 231, 235, .85);
    font-weight: 600;
}

/* Submit button */
.wpforms-container button[type=submit] {
    background: var(--orange);
    color: #0b1220;
    font-weight: 800;
    border-radius: 999px;
    padding: 12px 22px;
    border: 0;
    transition: transform .15s ease, box-shadow .15s ease;
}

.wpforms-container button[type=submit]:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(249, 115, 22, .35);
}

/* ===== CENNÍK PRO (plagátový štýl ako vzor) ===== */

.pricing-pro {
    padding: 10px 0 40px;
}

/* HERO banner */
.pricing-hero {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow);
    background:
        linear-gradient(90deg, rgba(15, 23, 42, .92) 0%, rgba(15, 23, 42, .65) 48%, rgba(15, 23, 42, .15) 100%),
        var(--hero-bg);
    background-size: cover;
    background-position: center;
    min-height: 260px;
    position: relative;
}

/* oranžové “vlny” ako na obrázku */
.pricing-hero::before,
.pricing-hero::after {
    content: "";
    position: absolute;
    left: -40px;
    right: -40px;
    height: 70px;
    background: radial-gradient(900px 70px at 20% 50%, rgba(249, 115, 22, .95), transparent 60%),
        radial-gradient(900px 70px at 80% 50%, rgba(249, 115, 22, .85), transparent 60%);
    border-radius: 999px;
    opacity: .95;
    pointer-events: none;
}

.pricing-hero::before {
    top: -28px;
}

.pricing-hero::after {
    bottom: -28px;
}

.pricing-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.pricing-hero__content {
    padding: 28px;
    max-width: 560px;
}

.pricing-hero__content h1 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4.6vw, 52px);
    line-height: 1.05;
}

/* Section head */
.pricing-pro__section-head {
    margin-top: 22px;
    text-align: center;
}

.pricing-pro__section-head h2 {
    margin: 0 0 8px;
}

/* Balíky */
.packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.package {
    position: relative;
    border-radius: 20px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    overflow: hidden;
}

.package h3 {
    margin: 16px 0 10px;
    font-size: 20px;
}

.package__badge {
    position: absolute;
    top: -18px;
    left: 18px;
    width: 68px;
    height: 68px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: var(--orange);
    color: #0b1220;
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .30);
}

.package__list {
    margin: 0;
    padding-left: 18px;
    color: rgba(229, 231, 235, .82);
}

.package__list li {
    margin: 6px 0;
}

.package__btn {
    margin-top: 14px;
    width: 100%;
}

/* Light card (ako biele kartičky) */
.package--light {
    background: rgba(255, 255, 255, .08);
}

/* Featured stredná karta */
.package--featured {
    background: rgba(17, 28, 51, .85);
    border-color: rgba(249, 115, 22, .30);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35), 0 0 0 1px rgba(249, 115, 22, .12);
    transform: translateY(-8px);
}

.package--featured .package__badge {
    background: var(--orange);
}

.package__ribbon {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(249, 115, 22, .12);
    border: 1px solid rgba(249, 115, 22, .30);
    color: rgba(229, 231, 235, .92);
    font-weight: 800;
    font-size: 13px;
}

.package__meta {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Benefits */
.benefits {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.benefit {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    border-radius: 16px;
    padding: 12px 12px;
    text-align: center;
    color: rgba(229, 231, 235, .86);
    font-weight: 700;
}

/* Add-ons */
.addons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.addon {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.addon__title {
    font-weight: 800;
}

.addon__price {
    color: rgba(249, 115, 22, .95);
    font-weight: 900;
    white-space: nowrap;
}

/* Bottom CTA */
.pricing-bottom-cta {
    margin-top: 22px;
    border: 1px solid rgba(249, 115, 22, .18);
    background: rgba(17, 28, 51, .85);
    border-radius: 22px;
    padding: 18px;
    text-align: center;
    box-shadow: var(--shadow);
}

.pricing-bottom-cta h2 {
    margin: 0 0 10px;
}

/* Responsive */
@media (max-width: 980px) {
    .packages {
        grid-template-columns: 1fr;
    }

    .package--featured {
        transform: none;
    }

    .benefits {
        grid-template-columns: 1fr 1fr;
    }

    .addons {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .addons {
        grid-template-columns: 1fr;
    }
}

/* ===== Cenník PRO – čitateľnosť / spacing ===== */

/* širšie karty + viac vnútorného priestoru */
.packages {
    gap: 18px;
}

.package {
    padding: 22px 22px 18px;
}

/* nadpisy a text */
.package h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 18px 0 12px;
}

.package__list {
    padding-left: 20px;
    margin-top: 8px;
}

.package__list li {
    margin: 9px 0;
    /* viac priestoru medzi bodmi */
    line-height: 1.55;
    /* lepšie riadkovanie */
    color: rgba(229, 231, 235, .88);
    /* vyšší kontrast */
    font-size: 15.5px;
    /* mierne väčšie písmo */
}

/* zjemnenie bodiek, aby neboli vizuálne rušivé */
.package__list li::marker {
    color: rgba(249, 115, 22, .85);
}

/* zvýraznený balík – ešte lepšia čitateľnosť */
.package--featured {
    background: rgba(17, 28, 51, .92);
}

/* tlačidlá: nech sú trochu vyššie + čitateľnejšie */
.package__btn {
    padding: 13px 18px;
    font-size: 15.5px;
    letter-spacing: .2px;
}

/* badge (cena) trochu ďalej od textu */
.package__badge {
    top: -20px;
    left: 20px;
}

/* „Najobľúbenejší balík“ nech má viac dýchania */
.package__ribbon {
    margin-top: 4px;
    margin-bottom: 6px;
}

/* meta riadok pri PRO nech je prehľadnejší */
.package__meta {
    margin-top: 14px;
    padding-top: 12px;
    font-size: 15px;
    color: rgba(229, 231, 235, .82);
}

.package__meta strong {
    color: rgba(249, 115, 22, .95);
}

/* benefity dole – trochu väčšie a kontrastnejšie */
.benefit {
    padding: 14px 12px;
    font-size: 14.5px;
    color: rgba(229, 231, 235, .90);
    background: rgba(255, 255, 255, .05);
}

/* responsívne: na menších šírkach nech sú karty viac “čitateľné” */
@media (max-width: 980px) {
    .package {
        padding: 20px 18px 16px;
    }

    .package h3 {
        font-size: 21px;
    }

    .package__list li {
        font-size: 15.5px;
    }
}

/* umožni badge presahovať kartu */
.package {
    overflow: visible;
}

.package__badge {
    top: -14px;
    /* bolo moc vysoko */
    left: 20px;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 800;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.package__badge {
    background: linear-gradient(180deg, #ff8a2a, #f97316);
    color: #0b1220;
}

.package--featured .package__badge {
    transform: scale(1.05);
}

/* Zvýšenie výšky balíčkov */
.package {
    min-height: 420px;
    /* zväčší kartu */
    padding-top: 56px;
    /* miesto pre cenu hore */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Cena (badge) vyššie a čistejšie */
.package__badge {
    top: -26px;
    /* viac priestoru */
    left: 24px;
    z-index: 3;
}

/* Názov balíka – viac odstupu */
.package h3 {
    margin-top: 24px;
    font-size: 22px;
    line-height: 1.25;
}

/* Zvýraznený stredný balík */
.package--featured {
    border: 1px solid rgba(249, 115, 22, .45);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .45),
        0 0 0 1px rgba(249, 115, 22, .25);
}



/* =========================
   PRICING HERO – TYPOGRAFIA
   ========================= */

.pricing-hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Nadpis */
.pricing-hero__content h1 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

/* Jemné oddelenie druhého riadku */
.pricing-hero__content h1 br {
    display: block;
    content: "";
    margin-top: 6px;
}

/* Slogan */
.pricing-hero__content .muted {
    display: flex;
    justify-content: center;
    gap: 28px;
    /* vzdialenosť medzi slovami */
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.6px;
    opacity: 0.85;
}

/* Na mobile trochu menšie rozostupy */
@media (max-width: 768px) {
    .pricing-hero__content .muted {
        gap: 16px;
        font-size: 14px;
    }
}

.pricing-hero__content h1::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), transparent);
}

/* ===== HERO: centrovanie + 2 riadky nadpis + rozostupy sloganu ===== */

.pricing-hero__overlay {
    justify-content: center !important;
}

.pricing-hero__content {
    text-align: center !important;
    max-width: 920px !important;
    margin: 0 auto !important;
    padding: 44px 22px !important;
}

.pricing-hero__content .hero-title {
    margin: 0 0 16px !important;
    line-height: 1.1 !important;
}

.pricing-hero__content .hero-line1 {
    display: block;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.pricing-hero__content .hero-line2 {
    display: block;
    margin-top: 6px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    opacity: .95;
}

/* Slogan – teraz už funguje gap, lebo sú tam spany */
.pricing-hero__content .hero-slogan {
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 26px !important;
    color: rgba(229, 231, 235, .75) !important;
    font-size: 15px !important;
    letter-spacing: .6px !important;
}

.pricing-hero__content .hero-slogan .dot {
    color: rgba(249, 115, 22, .9);
    font-weight: 900;
}

/* Mobil */
@media (max-width: 768px) {
    .pricing-hero__content {
        padding: 34px 16px !important;
    }

    .pricing-hero__content .hero-slogan {
        gap: 14px !important;
        font-size: 14px !important;
    }
}

/* ===== HERO: centrovanie + 2 riadky + slogan spaced ===== */

.pricing-hero {
    display: block;
}

/* overlay nech centrovane drží obsah */
.pricing-hero__overlay {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 260px;
    /* nech sa to pekne drží v strede */
}

/* obsah na stred + šírka */
.pricing-hero__content {
    width: 100% !important;
    max-width: 980px !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 46px 22px !important;
}

/* h1: 2 riadky */
.pricing-hero__content .hero-title {
    margin: 0 0 14px !important;
    line-height: 1.08 !important;
}

.pricing-hero__content .hero-line1 {
    display: block !important;
    font-size: clamp(42px, 5.2vw, 68px) !important;
    font-weight: 900 !important;
    letter-spacing: -0.6px !important;
}

.pricing-hero__content .hero-line2 {
    display: block !important;
    margin-top: 8px !important;
    font-size: clamp(30px, 4vw, 46px) !important;
    font-weight: 800 !important;
    opacity: .96 !important;
}

/* slogan: viac od seba + na stred */
.pricing-hero__content .hero-slogan {
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 28px !important;
    font-size: 15px !important;
    letter-spacing: .7px !important;
    color: rgba(229, 231, 235, .78) !important;
}

/* bodky oranžové */
.pricing-hero__content .hero-slogan .dot {
    color: rgba(249, 115, 22, .95) !important;
    font-weight: 900 !important;
}

/* mobil */
@media (max-width: 768px) {
    .pricing-hero__content {
        padding: 34px 16px !important;
    }

    .pricing-hero__content .hero-slogan {
        gap: 16px !important;
        font-size: 14px !important;
    }
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 10px;
}

.nav-socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.nav-socials a:hover {
    background: rgba(249, 115, 22, .16);
    border-color: rgba(249, 115, 22, .45);
    transform: translateY(-1px);
}

.nav-socials .icon {
    width: 18px;
    height: 18px;
    fill: rgba(229, 231, 235, .9);
}

.nav-socials a:hover .icon {
    fill: var(--orange);
}

/* voliteľné – skryť na mobile */
@media (max-width: 860px) {
    .nav-socials {
        display: none;
    }
}

/* === HEADER SOCIAL ICONS FIX === */
.nav-socials {
    display: flex !important;
    align-items: center;
    gap: 14px;
    margin-left: 16px;
    z-index: 20;
}

.nav-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;

    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.6);

    transition: all .2s ease;
}

.nav-socials a:hover {
    background: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

.nav-socials .icon {
    width: 18px;
    height: 18px;
    fill: #f97316;
    /* ORANŽOVÁ */
}

/* 🔥 istota, že ich niečo neschová */
.site-header .nav-socials {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-title {
    text-align: left;
}

.pricing-pro .hero-title {
    text-align: center;
}

.pricing-pro .hero-slogan {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.hero-title {
    text-align: left;
}

body.page-template-cennik-pro .hero-line1,
body.page-template-cennik-pro .hero-line2 {
    display: block;
}

body.page-template-cennik-pro .hero-line2 {
    margin-top: 8px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}