:root {
    --ink: #101516;
    --ink-soft: #314044;
    --muted: #667377;
    --line: #dde4df;
    --paper: #f6f7f3;
    --white: #ffffff;
    --dark: #071112;
    --dark-2: #111c1e;
    --green: #337b31;
    --green-2: #61b34e;
    --green-soft: #e7f2e3;
    --amber: #b68742;
    --danger: #943c32;
    --radius: 8px;
    --shadow: 0 20px 60px rgba(16, 21, 22, 0.12);
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(51, 123, 49, 0.16);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(51, 123, 49, 0.1);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 0;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(51, 123, 49, 0.18);
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--ink);
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 850px;
    font-size: 54px;
    font-weight: 820;
}

h2 {
    font-size: 34px;
    font-weight: 780;
}

h3 {
    font-size: 20px;
    font-weight: 760;
}

ul {
    margin: 0;
    padding: 0;
}

.shell {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    clip: auto;
    color: var(--white);
    background: var(--green);
}

body.menu-open {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(7, 17, 18, 0.93);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    min-height: 74px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 720;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--green-2);
}

.brand-mark svg {
    width: 38px;
    height: 38px;
    fill: currentColor;
}

.brand-text {
    font-size: 18px;
}

.primary-nav {
    justify-self: end;
}

.menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.menu li {
    position: relative;
}

.menu > li.menu-item-has-children::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -12px;
    left: -12px;
    height: 18px;
}

.menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 640;
}

.menu a:hover,
.menu .current-menu-item > a,
.menu .current-menu-ancestor > a {
    color: var(--green-2);
}

.menu .sub-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 20;
    display: none;
    min-width: 285px;
    max-width: min(420px, 90vw);
    gap: 0;
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(7, 17, 18, 0.98);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}

.menu .sub-menu .sub-menu {
    top: -10px;
    left: calc(100% + 8px);
    transform: translateX(-6px);
}

.menu .sub-menu li.menu-item-has-children::after {
    content: "";
    position: absolute;
    top: -6px;
    bottom: -6px;
    left: 100%;
    width: 14px;
}

.menu li:hover > .sub-menu,
.menu li:focus-within > .sub-menu {
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu .sub-menu li:hover > .sub-menu,
.menu .sub-menu li:focus-within > .sub-menu {
    transform: translateX(0);
}

.menu .sub-menu a {
    display: block;
    padding: 9px 11px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.82);
    white-space: normal;
}

.menu .sub-menu a:hover,
.menu .sub-menu .current-menu-item > a {
    color: var(--dark);
    background: var(--green-2);
}

.submenu-toggle {
    display: none;
}

.header-call {
    display: grid;
    min-width: 156px;
    padding: 10px 14px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--green), #2c6e32);
}

.header-call span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
}

.header-call strong {
    font-size: 16px;
    line-height: 1.2;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: transparent;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
}

.hero {
    position: relative;
    min-height: 650px;
    color: var(--white);
    background: var(--dark);
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(7, 17, 18, 0.94) 0%, rgba(7, 17, 18, 0.76) 43%, rgba(7, 17, 18, 0.2) 100%),
        var(--hero-image, none) center right / cover no-repeat;
}

.home .hero::before {
    background:
        linear-gradient(90deg, rgba(7, 17, 18, 0.94) 0%, rgba(7, 17, 18, 0.76) 43%, rgba(7, 17, 18, 0.2) 100%),
        var(--hero-image, url('/wp-content/themes/azbestpraha/assets/img/homepage-gen2/homepage-hero-eternit-roof.webp')) center right / cover no-repeat;
}

.hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    content: "";
    background: linear-gradient(180deg, rgba(7, 17, 18, 0), var(--dark));
}

.hero .shell {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 650px;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: center;
    gap: 56px;
    padding: 58px 0 72px;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 7px 12px;
    color: #226421;
    border: 1px solid rgba(63, 143, 56, 0.42);
    border-radius: 999px;
    background: #e7f2e3;
    font-size: 12px;
    font-weight: 820;
    text-transform: uppercase;
}

.hero .eyebrow,
.section.dark .eyebrow,
.page-hero .eyebrow {
    color: #e5f6de;
    border-color: rgba(97, 179, 78, 0.58);
    background: rgba(63, 143, 56, 0.24);
}

.hero h1,
.hero h3 {
    color: var(--white);
}

.hero p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 8px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 780;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.btn.primary {
    color: var(--white);
    background: #337b31;
}

.btn.primary:hover {
    background: #2b6729;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(16, 21, 22, 0.16);
}

.btn.secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.06);
}

.btn.light {
    color: var(--ink);
    background: var(--white);
}

.btn.outline {
    color: var(--green);
    border-color: rgba(63, 143, 56, 0.38);
    background: transparent;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 44px;
}

.trust-item {
    display: grid;
    align-content: start;
    gap: 9px;
    min-width: 0;
    min-height: 178px;
    padding: 18px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(7, 17, 18, 0.45);
    backdrop-filter: blur(10px);
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.trust-icon,
.service-icon,
.process-number {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--green-2);
    border: 1px solid rgba(97, 179, 78, 0.35);
    border-radius: 50%;
    background: rgba(97, 179, 78, 0.1);
    font-weight: 800;
}

.service-icon {
    color: #2f7f2e;
    border-color: rgba(63, 143, 56, 0.32);
    background: #eef7eb;
}

.trust-item strong {
    min-height: 44px;
    line-height: 1.2;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.trust-item .trust-icon {
    width: 34px;
    height: 34px;
    color: var(--white);
    border-color: rgba(97, 179, 78, 0.55);
    background: rgba(63, 143, 56, 0.38);
    font-size: 12px;
}

.proof-section {
    padding: 78px 0;
    background: linear-gradient(180deg, #eef4ea 0%, #f6f7f3 100%);
    border-bottom: 1px solid rgba(49, 64, 68, 0.08);
}

.proof-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 34px;
    align-items: center;
    padding: 38px;
    border: 1px solid rgba(49, 64, 68, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 70px rgba(16, 21, 22, 0.1);
    overflow: hidden;
}

.proof-band::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 310px;
    height: 310px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(97, 179, 78, 0.22), rgba(97, 179, 78, 0));
    pointer-events: none;
}

.proof-copy,
.proof-stats {
    position: relative;
    z-index: 1;
}

.proof-copy {
    display: grid;
    gap: 14px;
}

.proof-copy h2 {
    max-width: 560px;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.proof-copy p:not(.eyebrow) {
    max-width: 560px;
    color: var(--ink-soft);
    font-size: 17px;
}

.proof-note {
    margin-top: 6px;
    font-weight: 700;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.proof-stat {
    position: relative;
    display: grid;
    gap: 8px;
    min-height: 156px;
    align-content: start;
    padding: 24px 22px 22px;
    border: 1px solid rgba(49, 64, 68, 0.1);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(16, 21, 22, 0.07);
    overflow: hidden;
}

.proof-stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-2));
}

.proof-stat + .proof-stat {
    border-left: 1px solid rgba(49, 64, 68, 0.1);
}

.proof-stat strong {
    color: var(--dark);
    font-size: clamp(38px, 4.2vw, 54px);
    line-height: 0.96;
    font-weight: 860;
    letter-spacing: -0.065em;
    white-space: nowrap;
}

.proof-stat span {
    color: var(--ink);
    font-size: 15px;
    font-weight: 820;
}

.proof-stat small {
    max-width: 14em;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 650;
}

.quote-panel {
    color: var(--ink);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.quote-panel-inner {
    padding: 22px;
}

.quote-panel h2 {
    color: var(--ink);
    font-size: 22px;
}

.quote-panel p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 15px;
}

.mini-form {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

form br {
    display: none;
}

.mini-form input,
.mini-form select,
.mini-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.file-field {
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    font: inherit;
}

.mini-form textarea,
.contact-form textarea {
    min-height: 76px;
    resize: vertical;
}

.mini-form .btn {
    min-height: 44px;
}

.hp-field,
.mini-form .hp-field,
.contact-form .hp-field {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px !important;
    min-width: 0 !important;
    max-width: 1px !important;
    height: 1px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    border: 0 !important;
    opacity: 0;
    pointer-events: none;
}

.file-field {
    position: relative;
    display: grid;
    gap: 8px;
    cursor: pointer;
}

.file-field:focus-within {
    outline: 0;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(51, 123, 49, 0.12);
}

.file-field-label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.file-field-optional {
    margin-left: 6px;
    color: #337b31;
    font-size: 12px;
    font-weight: 800;
}

.file-field-ui {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.file-field-button {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    color: var(--white);
    border-radius: 999px;
    background: #337b31;
    font-size: 13px;
    font-weight: 900;
}

.file-field-name {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.file-field input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    cursor: pointer;
}

.form-success,
.form-error {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
}

.form-success {
    color: #14532d;
    border: 1px solid #86efac;
    background: #dcfce7;
}

.form-error {
    color: #7f1d1d;
    border: 1px solid #fecaca;
    background: #fee2e2;
}

.quote-panel .form-note {
    display: none;
}

.form-note {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
}

.form-note a,
.footer-legal-links a,
.legal-content a {
    color: var(--green);
    font-weight: 760;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section {
    padding: 92px 0;
}

.section.white {
    background: var(--white);
}

.section.dark {
    color: var(--white);
    background: var(--dark);
}

.section.dark h2,
.section.dark h3 {
    color: var(--white);
}

.section-head {
    display: grid;
    max-width: 720px;
    gap: 14px;
    margin-bottom: 36px;
}

.section-head.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-head p {
    color: var(--muted);
    font-size: 17px;
}

.section-head .eyebrow {
    color: #226421;
}

.section.dark .section-head p {
    color: rgba(255, 255, 255, 0.74);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    counter-reset: azp-card;
}

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

.card,
.service-card,
.price-card,
.post-card,
.faq-item,
.content-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 16px;
    min-height: 250px;
    padding: 30px 26px;
    border-color: rgba(51, 123, 49, 0.18);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcf9 100%);
}

.card::before {
    counter-increment: azp-card;
    content: "0" counter(azp-card);
    display: inline-flex;
    width: fit-content;
    margin-bottom: 6px;
    padding: 5px 10px;
    color: #337b31;
    border: 1px solid rgba(51, 123, 49, 0.24);
    border-radius: 999px;
    background: #edf6e9;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.card .service-icon {
    display: none;
}

.card h3 {
    max-width: 12em;
    font-size: 22px;
    line-height: 1.12;
}

.card p,
.service-card p,
.price-card p {
    color: var(--muted);
}

.card p {
    font-size: 16px;
    line-height: 1.65;
}

.service-card {
    overflow: hidden;
}

.service-card-image-link {
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.service-card img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.post-thumb img {
    transition: transform 0.28s ease;
}

.service-card-body {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.text-link {
    display: inline-flex;
    width: fit-content;
    color: var(--green);
    font-weight: 780;
    transition: color 0.18s ease;
}

.card:hover,
.service-card:hover,
.price-card:hover,
.post-card:hover,
.content-card:hover {
    transform: translateY(-4px);
    border-color: rgba(63, 143, 56, 0.34);
    box-shadow: 0 18px 46px rgba(16, 21, 22, 0.1);
}

.service-card:hover img,
.post-card:hover .post-thumb img {
    transform: scale(1.025);
}

.card:hover .service-icon,
.price-card:hover .price-value,
.service-card:hover .text-link,
.post-card:hover .text-link {
    color: #2d7a2c;
}

.card:hover .service-icon {
    color: var(--white);
    border-color: rgba(63, 143, 56, 0.62);
    background: var(--green);
}

.trust-item:hover,
.process-item:hover {
    transform: translateY(-3px);
    border-color: rgba(97, 179, 78, 0.32);
    background: rgba(255, 255, 255, 0.07);
}

.process-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 46px;
    align-items: start;
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.process-item > p:empty {
    display: none;
}

.process-item p {
    color: rgba(255, 255, 255, 0.72);
}

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

.price-card {
    display: grid;
    gap: 10px;
    padding: 24px;
}

.price-value {
    color: var(--green);
    font-size: 26px;
    font-weight: 820;
    line-height: 1.1;
}

.price-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.price-toc a {
    display: inline-flex;
    padding: 10px 13px;
    color: var(--green);
    border: 1px solid rgba(63, 143, 56, 0.3);
    border-radius: var(--radius);
    background: var(--white);
    font-weight: 760;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.price-toc a:hover {
    transform: translateY(-2px);
    border-color: rgba(63, 143, 56, 0.5);
    background: var(--green-soft);
}

.content-stack {
    display: grid;
    gap: 18px;
}

.content-card {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.content-card p,
.content-card li {
    color: var(--ink-soft);
}

.content-card ul {
    display: grid;
    gap: 8px;
    padding-left: 20px;
}

.related-links {
    padding-top: 74px;
    background: var(--paper);
}

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

.related-card {
    display: grid;
    gap: 10px;
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.related-card:hover {
    border-color: rgba(63, 143, 56, 0.45);
    transform: translateY(-2px);
}

.related-card span {
    color: var(--ink);
    font-size: 19px;
    font-weight: 780;
    line-height: 1.2;
}

.related-card p {
    color: var(--muted);
}

.notice-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius);
    color: var(--white);
    background: linear-gradient(135deg, var(--dark), #182527);
}

.notice-band h2 {
    color: var(--white);
}

.notice-band p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.75);
}

#faq {
    position: relative;
    padding: 92px 0 104px;
    background: linear-gradient(180deg, #f7faf5 0%, #ffffff 58%);
}

#faq .shell {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}

#faq .section-head.center {
    max-width: 360px;
    margin: 0;
    text-align: left;
}

#faq .section-head .eyebrow {
    margin-bottom: 10px;
    padding: 6px 11px;
    color: #226421;
    border-color: rgba(63, 143, 56, 0.25);
    background: #e9f4e5;
    font-size: 12px;
}

#faq .section-head h2 {
    max-width: 9em;
    font-size: clamp(42px, 4.2vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

#faq .section-head::after {
    content: "Stručné odpovědi na nejčastější dotazy před poptávkou. Bez strašení, bez technického balastu.";
    display: block;
    max-width: 320px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.faq-list {
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: 920px;
}

.faq-item {
    overflow: hidden;
    border-color: rgba(49, 64, 68, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 42px rgba(16, 21, 22, 0.06);
}

.faq-item.is-open {
    border-color: rgba(51, 123, 49, 0.28);
    box-shadow: 0 20px 52px rgba(16, 21, 22, 0.09);
}

.faq-button {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    gap: 22px;
    padding: 24px 28px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
    font-size: 20px;
    font-weight: 780;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
}

.faq-button::after {
    content: "+";
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    justify-self: end;
    color: var(--green);
    border: 1px solid rgba(51, 123, 49, 0.22);
    border-radius: 999px;
    background: #edf6e9;
    font-size: 22px;
    font-weight: 650;
    line-height: 1;
}

.faq-item.is-open .faq-button::after {
    content: "−";
    color: var(--white);
    border-color: var(--green);
    background: var(--green);
}

.faq-answer {
    display: none;
    max-width: 74ch;
    padding: 0 74px 26px 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
}

.contact-box {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--dark);
}

.contact-box h2,
.contact-box h3 {
    color: var(--white);
}

.contact-list {
    display: grid;
    gap: 10px;
    list-style: none;
}

.contact-list a {
    color: var(--green-2);
    font-weight: 760;
}

.contact-form {
    display: grid;
    gap: 12px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

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

.page-hero {
    padding: 104px 0 72px;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark), #182527);
}

.page-hero.compact {
    padding: 86px 0 64px;
}

.breadcrumbs {
    padding: 18px 0;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--dark);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 650;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: rgba(255, 255, 255, 0.35);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs a:hover {
    color: var(--green-2);
}

.breadcrumbs [aria-current="page"] {
    color: var(--white);
}

.page-hero h1,
.page-hero h2 {
    color: var(--white);
}

.page-hero p,
.page-hero .hero-intro {
    max-width: 720px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
}

.page-hero .hero-intro {
    display: grid;
    gap: 12px;
}

.page-hero .hero-intro p {
    max-width: none;
    margin-top: 0;
    color: inherit;
    font-size: inherit;
}

.page-hero .hero-intro a {
    color: var(--green-2);
    font-weight: 760;
}

.page-hero .hero-intro ul {
    display: grid;
    gap: 6px;
    padding-left: 20px;
}

.content-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 42px;
    align-items: start;
}

.content-prose {
    display: grid;
    gap: 20px;
}

.content-prose p,
.content-prose li {
    color: var(--ink-soft);
}

.content-prose ul {
    display: grid;
    gap: 9px;
    padding-left: 20px;
}

.azp-table-wrap {
    margin: 26px 0 34px;
    overflow-x: auto;
    border: 1px solid rgba(63, 143, 56, 0.18);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 44px rgba(16, 21, 22, 0.06);
}

.azp-table-wrap table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.azp-table-wrap th,
.azp-table-wrap td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(6, 20, 18, 0.08);
}

.azp-table-wrap th {
    color: var(--dark);
    background: var(--green-soft);
    font-size: 13px;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azp-table-wrap tbody tr:nth-child(even) {
    background: rgba(63, 143, 56, 0.035);
}

.azp-table-wrap tbody tr:last-child td {
    border-bottom: 0;
}

.azp-table-wrap td:first-child {
    color: var(--ink);
    font-weight: 760;
}

.azp-table-wrap td:nth-child(2) {
    color: var(--green);
    font-weight: 840;
    white-space: nowrap;
}

.azp-table-wrap td:nth-child(2) strong {
    color: inherit;
}

.azp-table-wrap td:nth-child(3) {
    color: var(--muted);
    font-size: 15px;
}

.image-panel {
    overflow: hidden;
    border-radius: var(--radius);
}

.image-panel img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

.service-hero {
    padding: 86px 0 78px;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark), #182527);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
    gap: 56px;
    align-items: center;
}

.service-hero-copy {
    display: grid;
    gap: 22px;
    max-width: 760px;
}

.service-hero h1,
.service-hero h2 {
    color: var(--white);
}

.service-lead {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(19px, 2vw, 23px);
    line-height: 1.58;
}

.service-hero-points,
.service-checklist {
    display: grid;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.service-hero-points li,
.service-checklist li {
    position: relative;
    padding-left: 28px;
}

.service-hero-points li::before,
.service-checklist li::before {
    position: absolute;
    top: 0.6em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    content: "";
    background: var(--green-2);
}

.service-hero-points li {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 720;
}

.service-note {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.service-hero-image,
.service-image-panel {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.service-hero-image img {
    display: block;
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.service-fit-grid,
.service-process-grid,
.service-info-grid {
    display: grid;
    gap: 18px;
}

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

.service-fit-grid article,
.service-process-grid article,
.service-info-card {
    padding: 26px;
    border: 1px solid rgba(49, 64, 68, 0.12);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 16px 42px rgba(16, 21, 22, 0.05);
}

.service-fit-grid h3,
.service-process-grid h3 {
    font-size: 21px;
    line-height: 1.18;
}

.service-fit-grid p,
.service-process-grid p,
.service-info-card p,
.service-info-card li {
    color: var(--muted);
}

.service-what {
    background: linear-gradient(180deg, #f7faf5 0%, #ffffff 100%);
}

.service-section.section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.service-what.section {
    padding-top: 72px;
    padding-bottom: 12px;
}

.service-what .content-split {
    align-items: center;
}

.service-what .service-image-panel img {
    min-height: 0;
    height: 320px;
}

.service-what + .service-section {
    padding-top: 24px;
}

@media (min-width: 681px) {
    .service-section .section-head.center .eyebrow {
        justify-self: center;
    }
}

.service-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    counter-reset: service-process;
}

.service-process-grid span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 5px 10px;
    color: #337b31;
    border: 1px solid rgba(51, 123, 49, 0.24);
    border-radius: 999px;
    background: #edf6e9;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.service-info-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: stretch;
}

.service-info-card {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 34px;
}

.service-info-card.green {
    color: var(--white);
    background: linear-gradient(135deg, var(--dark), #182527);
}

.service-info-card.green h2 {
    color: var(--white);
}

.service-info-card.green p {
    color: #dce5e1;
}

.service-info-card.green .eyebrow {
    color: #1f4d1f;
    border-color: #a8caa0;
    background: #e7f2e3;
}

.service-info-card.green .text-link {
    color: #9fe384;
}

.service-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.service-faq-grid .faq-list {
    max-width: none;
}

.service-faq-grid .section-head.center {
    margin: 0;
    text-align: left;
}

.service-cta-section {
    padding-top: 64px;
    padding-bottom: 58px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.76);
    background: var(--dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 42px;
    padding: 54px 0 34px;
}

.footer-grid h2 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 16px;
}

.footer-grid ul {
    display: grid;
    gap: 8px;
    list-style: none;
}

.footer-grid a:hover {
    color: var(--green-2);
}

.footer-brand {
    margin-bottom: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.footer-legal-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.legal-content {
    max-width: 880px;
}

.legal-content h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    font-size: clamp(26px, 3vw, 34px);
}

.legal-content h3 {
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
}

.legal-content ul {
    display: grid;
    gap: 8px;
    padding-left: 22px;
    margin: 12px 0 22px;
}

.legal-content strong {
    color: var(--ink);
}

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

.topic-hub {
    padding-bottom: 78px;
}

.topic-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.topic-hub-card {
    align-content: start;
}

.topic-hub-card h2 {
    font-size: 24px;
}

.topic-hub-card ul {
    padding-left: 0;
    list-style: none;
}

.topic-hub-card li {
    position: relative;
    padding-left: 18px;
}

.topic-hub-card li::before {
    position: absolute;
    left: 0;
    color: var(--green);
    content: "›";
    font-weight: 820;
}

.topic-hub-card a {
    color: var(--ink);
    font-weight: 760;
    text-decoration-color: rgba(63, 143, 56, 0.3);
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.topic-hub-card a:hover {
    color: var(--green);
}

.post-card {
    overflow: hidden;
}

.post-thumb {
    display: block;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #eef3ee 0%, #dde8de 100%);
    border-bottom: 1px solid var(--line);
}

.post-thumb img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-card-body {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.post-card h2 {
    font-size: 22px;
}

.post-card p {
    color: var(--muted);
}

.pagination {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
}

.pagination .page-numbers {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    font-weight: 760;
}

.pagination .current {
    color: var(--white);
    border-color: var(--green);
    background: var(--green);
}

.post-date {
    color: var(--amber);
    font-size: 13px;
    font-weight: 760;
}

.single-post {
    padding: 76px 0 96px;
}

.single-header {
    display: grid;
    max-width: 860px;
    gap: 16px;
}

.single-header p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.single-thumb {
    margin: 34px 0;
    overflow: hidden;
    border-radius: var(--radius);
}

.single-thumb img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.single-content {
    max-width: 780px;
}

.single-content p,
.single-content li {
    color: var(--ink-soft);
}

.single-content p + p,
.single-content p + h2,
.single-content h2 + p,
.single-content ul + h2 {
    margin-top: 22px;
}

.single-content h2 {
    margin-top: 36px;
}

.single-content ul {
    margin-top: 14px;
    padding-left: 22px;
}

.single-content img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.single-content a:not(.btn),
.content-prose a:not(.btn),
.hero-intro a:not(.btn) {
    color: var(--green);
    font-weight: 760;
    text-decoration-line: underline;
    text-decoration-color: rgba(63, 143, 56, 0.55);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

.single-content a:not(.btn):hover,
.content-prose a:not(.btn):hover,
.hero-intro a:not(.btn):hover {
    color: #2d7a2c;
    text-decoration-color: currentColor;
}

.authority-sources {
    display: grid;
    gap: 12px;
    margin: 36px 0 30px;
    padding: 22px;
    border: 1px solid rgba(63, 143, 56, 0.24);
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    background: var(--green-soft);
}

.authority-sources h2 {
    margin: 0;
    font-size: 23px;
}

.authority-sources p {
    margin: 0;
    color: var(--ink-soft);
}

.authority-sources ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 20px;
}

.authority-sources li span {
    display: block;
    color: var(--ink-soft);
    font-size: 14px;
}

.article-figure {
    margin: 28px 0;
}

.article-figure figcaption {
    margin-top: 9px;
    color: var(--muted);
    font-size: 14px;
}

.article-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.article-image-grid .article-figure {
    margin: 0;
}

.article-cta {
    display: grid;
    gap: 12px;
    margin-top: 34px;
    padding: 24px;
    border-radius: var(--radius);
    color: var(--white);
    background: linear-gradient(135deg, var(--dark), #182527);
}

.article-cta h3 {
    color: var(--white);
    font-size: 24px;
    line-height: 1.2;
}

.article-cta p,
.article-cta li,
.article-cta strong {
    color: rgba(255, 255, 255, 0.88);
}

.article-cta ul {
    margin: 4px 0 0;
}

.article-cta a,
.content-prose .article-cta a,
.single-content .article-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 4px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: var(--white);
    background: #337b31;
    font-weight: 780;
    text-decoration: none;
    text-decoration-line: none;
}

.article-cta a:hover,
.content-prose .article-cta a:hover,
.single-content .article-cta a:hover {
    color: var(--white);
    background: #2b6729;
    text-decoration-line: none;
}

.context-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin: 34px 0;
    padding: 24px 22px 24px 26px;
    overflow: hidden;
    border: 1px solid rgba(63, 143, 56, 0.22);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ec 100%);
    box-shadow: 0 18px 46px rgba(16, 21, 22, 0.08);
}

.context-cta::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--green), var(--amber));
}

.context-cta__body {
    display: grid;
    gap: 7px;
}

.context-cta__eyebrow {
    color: var(--green);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.context-cta h2 {
    margin: 0;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.18;
}

.context-cta p {
    color: var(--ink-soft);
}

.context-cta__actions {
    display: grid;
    gap: 10px;
    justify-items: end;
    min-width: 175px;
}

.context-cta .btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    white-space: nowrap;
}

.context-cta__phone {
    color: var(--green);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.context-cta__phone:hover {
    color: #2d7a2c;
    text-decoration: underline;
}

@media (max-width: 760px) {
    .azp-table-wrap {
        display: grid;
        gap: 14px;
        overflow: visible;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .azp-table-wrap table,
    .azp-table-wrap thead,
    .azp-table-wrap tbody,
    .azp-table-wrap tr,
    .azp-table-wrap th,
    .azp-table-wrap td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .azp-table-wrap thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .azp-table-wrap tbody {
        display: grid;
        gap: 14px;
    }

    .azp-table-wrap tbody tr,
    .azp-table-wrap tbody tr:nth-child(even) {
        display: grid;
        gap: 9px;
        padding: 18px;
        border: 1px solid rgba(63, 143, 56, 0.18);
        border-left: 4px solid var(--green);
        border-radius: 16px;
        background: linear-gradient(135deg, #ffffff 0%, #f3f8f0 100%);
        box-shadow: 0 14px 36px rgba(16, 21, 22, 0.07);
    }

    .azp-table-wrap td {
        padding: 0;
        border-bottom: 0;
    }

    .azp-table-wrap td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 3px;
        color: var(--muted);
        font-size: 11px;
        font-weight: 820;
        letter-spacing: 0.09em;
        text-transform: uppercase;
    }

    .azp-table-wrap td:first-child {
        font-size: 17px;
        line-height: 1.35;
    }

    .azp-table-wrap td:first-child::before {
        content: none;
    }

    .azp-table-wrap td:nth-child(2) {
        display: inline-flex;
        width: fit-content;
        margin-top: 2px;
        padding: 7px 11px;
        color: var(--dark);
        border-radius: 999px;
        background: var(--green-2);
        font-size: 16px;
        line-height: 1.2;
        white-space: normal;
    }

    .azp-table-wrap td:nth-child(2)::before {
        content: none;
    }

    .azp-table-wrap td:nth-child(3) {
        padding-top: 2px;
        font-size: 14px;
        line-height: 1.55;
    }
}

@media (max-width: 980px) {
    .context-cta {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px;
    }

    .context-cta__actions {
        justify-items: stretch;
        min-width: 0;
    }

    .context-cta__phone {
        text-align: center;
    }

    #faq .shell {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #faq .section-head.center {
        max-width: 680px;
    }

    #faq .section-head h2 {
        max-width: 10em;
    }

    #faq .section-head::after {
        max-width: 560px;
    }

    .faq-list {
        max-width: none;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 30px;
    }

    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .site-header {
        backdrop-filter: none;
    }

    .nav-toggle {
        position: fixed;
        top: 14px;
        top: calc(env(safe-area-inset-top) + 14px);
        right: 14px;
        z-index: 120;
        display: block;
        background: rgba(7, 17, 18, 0.94);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    }

    .primary-nav {
        position: fixed;
        top: 72px;
        top: calc(env(safe-area-inset-top) + 72px);
        right: 14px;
        left: 14px;
        z-index: 110;
        display: none;
        width: auto;
        max-height: calc(100dvh - 96px - env(safe-area-inset-top));
        padding: 16px 18px 20px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 24px;
        background: rgba(7, 17, 18, 0.98);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    }

    .primary-nav.is-open {
        display: block;
    }

    .menu {
        display: grid;
        gap: 0;
    }

    .menu li {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .menu li > .sub-menu {
        display: none;
        grid-column: 1 / -1;
    }

    .menu li.is-submenu-open > .sub-menu {
        display: grid;
    }

    .menu .sub-menu,
    .menu .sub-menu .sub-menu {
        position: static;
        min-width: 0;
        max-width: none;
        margin: 0 0 0 14px;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        margin-left: 8px;
        color: var(--green-2);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 999px;
        background: transparent;
    }

    .submenu-toggle::before {
        content: "⌄";
        font-size: 18px;
        line-height: 1;
        transition: transform .18s ease;
    }

    .menu li.is-submenu-open > .submenu-toggle::before {
        transform: rotate(180deg);
    }

    .menu .sub-menu a {
        padding: 10px 0 10px 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
        color: rgba(255, 255, 255, 0.68);
        background: transparent;
        white-space: normal;
    }

    .menu .sub-menu a:hover,
    .menu .sub-menu .current-menu-item > a {
        color: var(--green-2);
        background: transparent;
    }

    .menu a {
        display: block;
        padding: 13px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-call {
        display: none;
    }

    .hero .shell {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 74px 0;
    }

    .quote-panel {
        max-width: 560px;
    }

    .trust-row,
    .card-grid,
    .price-grid,
    .post-grid,
    .topic-hub-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-band,
    .process-wrap,
    .contact-grid,
    .content-split,
    .service-hero-grid,
    .service-info-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding: 62px 0 68px;
    }

    .service-hero-image img {
        min-height: 360px;
    }

    .service-fit-grid,
    .service-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .image-panel img {
        min-height: 320px;
    }
}

@media (max-width: 680px) {
    .shell {
        width: min(100% - 28px, 1160px);
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 27px;
    }

    .brand-text {
        font-size: 16px;
    }

    .hero {
        min-height: auto;
    }

    .hero .shell {
        padding: 26px 0 58px;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(7, 17, 18, 0.9) 0%, rgba(7, 17, 18, 0.84) 55%, rgba(7, 17, 18, 0.98) 100%),
            var(--hero-image, none) center / cover no-repeat;
    }

    .home .hero::before {
        background:
            linear-gradient(180deg, rgba(7, 17, 18, 0.9) 0%, rgba(7, 17, 18, 0.84) 55%, rgba(7, 17, 18, 0.98) 100%),
            var(--hero-image, url('/wp-content/themes/azbestpraha/assets/img/homepage-gen2/homepage-hero-eternit-roof.webp')) center / cover no-repeat;
    }

    .hero p,
    .page-hero p,
    .page-hero .hero-intro {
        font-size: 16px;
    }

    .hero-actions,
    .footer-bottom {
        display: grid;
    }

    .notice-band {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
        padding: 24px 22px;
    }

    .notice-band h2 {
        max-width: 11em;
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -0.03em;
    }

    .notice-band p {
        max-width: 26em;
        margin-top: 12px;
        font-size: 17px;
        line-height: 1.55;
    }

    .notice-band .btn {
        width: 100%;
        max-width: 100%;
        margin-top: 2px;
        white-space: normal;
    }

    .btn {
        width: 100%;
    }

    .trust-row,
    .card-grid,
    .service-grid,
    .price-grid,
    .proof-stats,
    .post-grid,
    .topic-hub-grid,
    .related-grid,
    .article-image-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: 0;
    }

    .trust-item strong {
        min-height: 0;
    }

    .proof-section {
        padding: 42px 0;
    }

    .proof-band {
        gap: 24px;
        padding: 22px;
        border-radius: 24px;
    }

    .proof-copy {
        gap: 12px;
    }

    .proof-copy h2 {
        font-size: 30px;
        line-height: 1.06;
    }

    .proof-copy p:not(.eyebrow) {
        font-size: 16px;
    }

    .proof-stats {
        gap: 12px;
    }

    .proof-stat {
        min-height: 116px;
        padding: 20px 18px 18px;
    }

    .proof-stat + .proof-stat {
        border-top: 1px solid rgba(49, 64, 68, 0.1);
        border-left: 1px solid rgba(49, 64, 68, 0.1);
    }

    .proof-stat strong {
        font-size: 40px;
    }

    .breadcrumbs {
        display: block;
        padding: 8px 0;
        overflow: hidden;
        border-top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .breadcrumbs ol {
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        white-space: nowrap;
    }

    .breadcrumbs ol::-webkit-scrollbar {
        display: none;
    }

    .breadcrumbs li {
        flex: 0 0 auto;
        gap: 6px;
        font-size: 12px;
        line-height: 1.3;
        white-space: nowrap;
    }

    .breadcrumbs [aria-current="page"] {
        display: inline-block;
        max-width: min(64vw, 280px);
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom;
        white-space: nowrap;
    }

    .page-hero {
        padding: 22px 0 34px;
    }

    .page-hero.compact {
        padding: 14px 0 28px;
    }

    .page-hero .eyebrow {
        margin-bottom: 12px;
        padding: 6px 10px;
    }

    .section {
        padding: 46px 0;
    }

    .service-hero {
        padding: 34px 0 52px;
    }

    .service-section,
    .service-what {
        padding: 24px 0;
    }

    .service-section.section {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .service-what.section {
        padding-top: 16px;
        padding-bottom: 10px;
    }

    .service-what + .service-section {
        padding-top: 16px;
    }

    .service-section + .section.white {
        padding-top: 18px;
    }

    .service-cta-section {
        padding: 30px 0 34px;
    }

    .service-section .section-head,
    .service-faq-grid .section-head {
        gap: 10px;
        margin-bottom: 18px;
    }

    .service-section .section-head.center,
    .service-faq-grid .section-head.center {
        margin-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .service-hero-copy {
        gap: 18px;
    }

    .service-lead {
        font-size: 18px;
        line-height: 1.55;
    }

    .service-hero-image {
        display: none;
    }

    .service-hero-image img {
        min-height: 0;
    }

    .service-fit-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-fit-grid article,
    .service-process-grid article,
    .service-info-card {
        padding: 22px;
    }

    #faq,
    section[id^="faq-"] {
        padding: 18px 0 30px;
    }

    #faq .shell,
    .service-faq-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    #faq .section-head h2,
    .service-faq-grid .section-head h2 {
        max-width: none;
        font-size: 34px;
        letter-spacing: -0.045em;
    }

    #faq .section-head::after,
    .service-faq-grid .section-head::after {
        margin-top: 10px;
        font-size: 16px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-button {
        grid-template-columns: minmax(0, 1fr) 34px;
        gap: 14px;
        padding: 19px 18px;
        font-size: 18px;
    }

    .faq-button::after {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .faq-answer {
        padding: 0 18px 20px;
        font-size: 16px;
        line-height: 1.65;
    }

    .azp-page > .section:first-of-type {
        padding-top: 24px;
    }

    .azp-page > .service-section:first-of-type,
    .service-hero + .service-section {
        padding-top: 24px;
    }

    .service-cta-section + .related-links,
    .related-links {
        padding-top: 34px;
        padding-bottom: 44px;
    }

    .service-card img,
    .post-thumb img {
        height: 210px;
    }

    .content-split {
        gap: 28px;
    }

    .content-split .image-panel {
        display: none;
    }

    .image-panel img {
        height: 240px;
        min-height: 0;
    }

    .quote-panel-inner,
    .contact-form,
    .contact-box {
        padding: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

    .btn:hover,
    .card:hover,
    .service-card:hover,
    .price-card:hover,
    .post-card:hover,
    .content-card:hover,
    .trust-item:hover,
    .process-item:hover,
    .price-toc a:hover {
        transform: none;
    }

    .service-card:hover img,
    .post-card:hover .post-thumb img {
        transform: none;
    }
}

/* Accessibility: keep keyboard focus visible across dark hero, cards, forms and footer without the heavy yellow production ring. */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(51, 123, 49, 0.16);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(51, 123, 49, 0.1);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 0;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(51, 123, 49, 0.18);
}
