:root {
    --dc-accent: #17a99d;
    --dc-accent-dark: #0d887f;
    --dc-accent-light: #35d2c3;
    --dc-accent-soft: rgba(23, 169, 157, 0.12);
    --dc-navy: #07131d;
    --dc-navy-2: #0d1d29;
    --dc-ink: #14212d;
    --dc-text: #344452;
    --dc-muted: #687681;
    --dc-soft: #f3f6f7;
    --dc-line: #dfe6e9;
    --dc-white: #ffffff;
    --dc-radius-sm: 8px;
    --dc-radius: 14px;
    --dc-radius-lg: 24px;
    --dc-shadow-sm: 0 10px 30px rgba(7, 19, 29, 0.08);
    --dc-shadow: 0 24px 70px rgba(7, 19, 29, 0.14);
    --dc-shadow-dark: 0 28px 70px rgba(0, 0, 0, 0.32);
    --dc-header-height: 88px;
    --dc-section: clamp(4.2rem, 7vw, 7rem);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--dc-header-height) + 18px);
}

body {
    margin: 0;
    color: var(--dc-text);
    background: var(--dc-white);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } 
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .22s ease, opacity .22s ease; }
a:hover { color: var(--dc-accent); }
button, input, select, textarea { font: inherit; }

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    color: var(--dc-ink);
    font-weight: 800;
    line-height: 1.1;
}

p:last-child { margin-bottom: 0; }
::selection { color: #fff; background: var(--dc-accent); }
.site-main { overflow: clip; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(7, 19, 29, .08);
    transition: box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 34px rgba(7, 19, 29, .12);
    backdrop-filter: blur(14px);
}

.dachcare-navbar { min-height: var(--dc-header-height); padding: .8rem 0; }
.navbar-brand { display: inline-flex; align-items: center; min-width: 205px; }
.navbar-brand img, .custom-logo { width: 235px; max-height: 60px; object-fit: contain; }
.dachcare-navbar .navbar-nav { gap: .25rem; }
.dachcare-navbar .nav-link {
    position: relative;
    padding: .72rem .9rem !important;
    color: var(--dc-ink);
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .01em;
    text-transform: uppercase;
}
.dachcare-navbar .nav-link::after {
    content: "";
    position: absolute;
    right: .9rem;
    bottom: .3rem;
    left: .9rem;
    height: 2px;
    background: var(--dc-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}
.dachcare-navbar .nav-link:hover,
.dachcare-navbar .current-menu-item > .nav-link,
.dachcare-navbar .current_page_item > .nav-link { color: var(--dc-accent-dark); }
.dachcare-navbar .nav-link:hover::after,
.dachcare-navbar .current-menu-item > .nav-link::after,
.dachcare-navbar .current_page_item > .nav-link::after { transform: scaleX(1); }

.header-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dc-ink);
    white-space: nowrap;
}
.header-call:hover { color: var(--dc-accent-dark); }
.header-call__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--dc-accent);
    border: 1px solid var(--dc-accent);
    border-radius: 50%;
    font-size: 20px;
}
.header-call__text { display: flex; flex-direction: column; line-height: 1.08; }
.header-call__text small { color: var(--dc-muted); font-size: .72rem; font-weight: 600; }
.header-call__text strong { margin-top: 4px; color: var(--dc-ink); font-size: 1rem; }
.navbar-toggler { border: 0; box-shadow: none !important; }

/* Buttons and shared sections */
.section { position: relative; padding-block: var(--dc-section); }
.section-light { background: #fff; }
.section-soft { background: var(--dc-soft); }
.section-dark {
    color: rgba(255,255,255,.72);
    background:
        radial-gradient(circle at 76% 16%, rgba(23,169,157,.14), transparent 28%),
        linear-gradient(145deg, #07131d, #0d1d29 65%, #101f2b);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-title { margin-bottom: 1.15rem; font-size: clamp(2.05rem, 4vw, 3.7rem); }
.section-heading { max-width: 790px; margin: 0 auto clamp(2.5rem, 5vw, 4.4rem); }
.section-heading h2 { margin-bottom: 1rem; font-size: 2.5rem; }
.section-heading p { color: var(--dc-muted); font-size: clamp(1rem, 1.5vw, 1.16rem); }
.section-heading--light h2 { color: #fff; }
.section-heading--light p { color: rgba(255,255,255,.62); }
.section-lead { color: var(--dc-muted); font-size: clamp(1.02rem, 1.6vw, 1.18rem); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 1rem;
    color: var(--dc-accent-light);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow::after { content: ""; width: 34px; height: 2px; background: currentColor; }
.eyebrow--dark { color: var(--dc-accent-dark); }

.btn {
    --bs-btn-padding-x: 1.35rem;
    --bs-btn-padding-y: .8rem;
    --bs-btn-font-weight: 800;
    --bs-btn-border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    letter-spacing: -.01em;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}
.btn-lg { --bs-btn-padding-x: 1.55rem; --bs-btn-padding-y: .95rem; --bs-btn-font-size: .94rem; min-height: 56px; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-brand {
    color: #fff;
    background: linear-gradient(135deg, var(--dc-accent-light), var(--dc-accent));
    border-color: var(--dc-accent);
    box-shadow: 0 13px 28px rgba(23,169,157,.25);
}
.btn-brand:hover, .btn-brand:focus { color: #fff; background: linear-gradient(135deg, var(--dc-accent), var(--dc-accent-dark)); border-color: var(--dc-accent-dark); box-shadow: 0 18px 36px rgba(23,169,157,.32); }
.btn-dark { color:#fff; background: var(--dc-ink); border-color: var(--dc-ink); }
.btn-dark:hover, .btn-dark:focus { color:#fff; background: var(--dc-navy); border-color: var(--dc-navy); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.58); }
.btn-outline-light:hover, .btn-outline-light:focus { color: var(--dc-ink); background: #fff; border-color: #fff; }
.btn-light { color: var(--dc-ink); background: #fff; border-color: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.btn-light:hover { color: var(--dc-accent-dark); background:#fff; border-color:#fff; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--dc-ink); font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.text-link:hover { color: var(--dc-accent-dark); }

/* Reveals */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal { transform: translateY(24px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: none; }

/* Hero */
.hero, .page-hero, .contact-hero {
    position: relative;
    color: #fff;
    background: var(--hero-image, var(--page-hero)) center/cover no-repeat;
    isolation: isolate;
}
.hero__overlay, .page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(4,13,20,.93) 0%, rgba(4,13,20,.75) 42%, rgba(4,13,20,.25) 78%, rgba(4,13,20,.16) 100%);
}
.hero-home .hero__row { min-height: clamp(560px, 72vh, 760px); padding-block: 4rem; }
.hero h1, .page-hero h1, .contact-hero h1 {
    max-width: 780px;
    margin-bottom: 1.25rem;
    color: #fff;
    font-size: clamp(2.7rem, 3vw, 3.05rem) !important;
    font-weight: 900;
    line-height: .98;
    text-transform: uppercase;
}
.hero h1 span, .page-hero h1 span, .contact-hero h1 span { color: var(--dc-accent-light); }
.hero__lead, .page-hero .lead, .contact-hero .lead { max-width: 660px; color: rgba(255,255,255,.86); font-size: clamp(1.1rem, 2vw, 1.42rem); line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }

.hero-note {
    padding: 28px;
    color: rgba(255,255,255,.78);
    background: rgba(7,19,29,.82);
    border: 1px solid rgba(255,255,255,.16);
    border-top: 3px solid var(--dc-accent);
    border-radius: var(--dc-radius);
    box-shadow: var(--dc-shadow-dark);
    backdrop-filter: blur(14px);
}
.hero-note__icon { display:inline-flex; align-items:center; justify-content:center; width:58px; height:58px; margin-bottom:18px; color:#fff; background:var(--dc-accent); border-radius:50%; font-size:26px; }
.hero-note small { display:block; color:var(--dc-accent-light); font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.hero-note h2 { margin: 10px 0 18px; color:#fff; font-size:1.55rem; }
.hero-note ul { display:grid; gap:10px; padding:0; margin:0; list-style:none; }
.hero-note li { display:flex; gap:9px; align-items:flex-start; }
.hero-note li i { margin-top:3px; color:var(--dc-accent-light); }

/* Advantages */
.advantages-section { position: relative; z-index: 5; background:#fff; }
.advantages-row { box-shadow: 0 18px 48px rgba(7,19,29,.07); }
.advantage-card { display:flex; gap:18px; align-items:flex-start; padding:30px 26px; border-right:1px solid var(--dc-line); background:#fff; }
.advantages-row > div:last-child .advantage-card { border-right:0; }
.advantage-card__icon { display:inline-flex; align-items:center; justify-content:center; flex:0 0 50px; width:50px; height:50px; color:var(--dc-accent); border:1px solid rgba(23,169,157,.36); border-radius:50%; font-size:23px; }
.advantage-card h2 { margin:0 0 8px; font-size:.96rem; text-transform:uppercase; letter-spacing:-.01em; }
.advantage-card p { margin:0; color:var(--dc-muted); font-size:.84rem; line-height:1.55; }

/* Service cards */
.service-card {
    display:flex;
    flex-direction:column;
    overflow:hidden;
    color:var(--dc-text);
    background:#fff;
    border:1px solid rgba(255,255,255,.08);
    border-radius:var(--dc-radius-sm);
    box-shadow:0 15px 38px rgba(0,0,0,.18);
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover { transform:translateY(-7px); border-color:rgba(23,169,157,.42); box-shadow:0 24px 48px rgba(0,0,0,.28); }
.service-card__media { position:relative; display:block; overflow:hidden; aspect-ratio: 16/9; background:#dfe5e8; }
.service-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.service-card:hover .service-card__media img { transform:scale(1.045); }
.service-card__icon { position:absolute; left:18px; bottom:-23px; display:inline-flex; align-items:center; justify-content:center; width:50px; height:50px; color:#fff; background:var(--dc-navy); border:2px solid var(--dc-accent); border-radius:10px; font-size:22px; box-shadow:0 8px 22px rgba(7,19,29,.24); }
.service-card__body { display:flex; flex:1; flex-direction:column; padding:34px 22px 23px; }
.service-card__body h3 { margin-bottom:12px; font-size:1.12rem; }
.service-card__body p { flex:1; margin-bottom:18px; color:var(--dc-muted); font-size:.9rem; line-height:1.58; }
.service-grid--light .service-card { border-color:var(--dc-line); box-shadow:var(--dc-shadow-sm); }

/* Why */
.principles-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.principle-card { position:relative; min-height:210px; padding:28px; overflow:hidden; background:#fff; border:1px solid var(--dc-line); border-radius:var(--dc-radius); box-shadow:var(--dc-shadow-sm); }
.principle-card > strong { display:block; margin-bottom:28px; color:var(--dc-accent); font-size:2.4rem; font-weight:900; line-height:1; }
.principle-card h3 { margin-bottom:10px; font-size:1.12rem; }
.principle-card p { margin:0; color:var(--dc-muted); font-size:.9rem; }
.principle-card::after { content:""; position:absolute; right:-35px; top:-35px; width:120px; height:120px; background:var(--dc-accent-soft); border-radius:50%; }

/* Home gallery */
.section-title-row { display:flex; align-items:flex-end; justify-content:space-between; gap:2rem; margin-bottom:2rem; }
.section-title-row h2 { margin:0; font-size:clamp(1.9rem,3.5vw,3rem); }
.home-gallery { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:220px; gap:14px; }
.home-gallery__item { position:relative; overflow:hidden; border-radius:var(--dc-radius-sm); box-shadow:var(--dc-shadow-sm); }
.home-gallery__item--1 { grid-column:span 2; grid-row:span 2; }
.home-gallery__item img { width:100%; height:100%; object-fit:cover; transition:transform .55s ease; }
.home-gallery__item:hover img { transform:scale(1.05); }
.home-gallery__overlay { position:absolute; inset:auto 0 0; display:grid; grid-template-columns:1fr auto; gap:3px 16px; padding:30px 22px 20px; color:#fff; background:linear-gradient(transparent,rgba(4,13,20,.88)); }
.home-gallery__overlay small { grid-column:1; color:var(--dc-accent-light); font-size:.72rem; font-weight:800; text-transform:uppercase; }
.home-gallery__overlay strong { grid-column:1; font-size:1rem; line-height:1.25; }
.home-gallery__overlay i { grid-column:2; grid-row:1/3; align-self:end; font-size:22px; }

/* Contact strips and panels */
.contact-strip, .cta-panel { display:flex; align-items:center; justify-content:space-between; gap:2rem; padding:clamp(28px,4vw,50px); background:#fff; border:1px solid var(--dc-line); border-left:5px solid var(--dc-accent); border-radius:var(--dc-radius); box-shadow:var(--dc-shadow-sm); }
.contact-strip h2, .cta-panel h2 { margin-bottom:10px; font-size:clamp(1.8rem,2.5vw,2.5rem); }
.contact-strip p, .cta-panel p { max-width:750px; color:var(--dc-muted); }
.contact-strip__actions { display:flex; align-items:center; gap:22px; flex:0 0 auto; }
.contact-strip__phone { display:flex; align-items:center; gap:12px; color:var(--dc-ink); }
.contact-strip__phone > i { display:inline-flex; align-items:center; justify-content:center; width:50px; height:50px; color:var(--dc-accent); border:1px solid var(--dc-accent); border-radius:50%; font-size:21px; }
.contact-strip__phone span { display:flex; flex-direction:column; line-height:1.1; }
.contact-strip__phone small { color:var(--dc-muted); font-size:.72rem; }
.contact-strip__phone strong { margin-top:4px; white-space:nowrap; }

/* Page heroes */
.page-hero__row { min-height:75vh; padding-block:4rem; }
.page-hero h1, .contact-hero h1 { font-size:clamp(2.9rem,5.7vw,5.4rem); }
.breadcrumbs { display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin-bottom:1.6rem; color:rgba(255,255,255,.68); font-size:.78rem; }
.breadcrumbs a:hover { color:#fff; }
.breadcrumbs i { font-size:.68rem; }
.page-hero--about { background-position:center 58%; }
.page-hero--reviews { background-position:center; }

.hero-project-card { display:block; overflow:hidden; color:#fff; background:rgba(7,19,29,.9); border:1px solid rgba(255,255,255,.16); border-radius:var(--dc-radius); box-shadow:var(--dc-shadow-dark); backdrop-filter:blur(12px); }
.hero-project-card:hover { color:#fff; transform:translateY(-4px); }
.hero-project-card__label { display:flex; gap:8px; align-items:center; padding:14px 18px; color:var(--dc-accent-light); font-size:.75rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.hero-project-card img { width:100%; height:210px; object-fit:cover; }
.hero-project-card > div { padding:20px; }
.hero-project-card small { color:var(--dc-accent-light); font-size:.72rem; font-weight:700; text-transform:uppercase; }
.hero-project-card h2 { margin:7px 0 16px; color:#fff; font-size:1.45rem; }
.hero-project-card > div > span { display:inline-flex; gap:8px; align-items:center; font-size:.78rem; font-weight:800; text-transform:uppercase; }

/* Project filters and gallery */
.project-filter-wrap { position:relative; z-index:10; margin-top:-34px; }
.project-filters { display:flex; align-items:center; overflow-x:auto; background:#fff; border:1px solid var(--dc-line); border-radius:var(--dc-radius-sm); box-shadow:var(--dc-shadow); scrollbar-width:none; }
.project-filters::-webkit-scrollbar { display:none; }
.project-filters button { position:relative; display:flex; align-items:center; justify-content:center; gap:8px; flex:1 0 auto; min-height:68px; padding:0 22px; color:var(--dc-ink); background:transparent; border:0; border-right:1px solid var(--dc-line); font-size:.78rem; font-weight:800; text-transform:uppercase; }
.project-filters button:last-child { border-right:0; }
.project-filters button::after { content:""; position:absolute; right:16px; bottom:0; left:16px; height:3px; background:var(--dc-accent); transform:scaleX(0); transition:transform .22s ease; }
.project-filters button.active, .project-filters button:hover { color:var(--dc-accent-dark); }
.project-filters button.active::after { transform:scaleX(1); }

.featured-project-section { padding-bottom:3rem; }
.featured-project { display:grid; grid-template-columns:1.15fr .85fr; overflow:hidden; background:#fff; border:1px solid var(--dc-line); border-radius:var(--dc-radius); box-shadow:var(--dc-shadow-sm); }
.featured-project__media img { width:100%; height:100%; min-height:510px; object-fit:cover; }
.featured-project__content { display:flex; flex-direction:column; justify-content:center; padding:clamp(30px,5vw,58px); }
.featured-project__content h2 { font-size:clamp(2rem,3.6vw,3.3rem); }
.featured-project__content > p { color:var(--dc-muted); }
.featured-project__meta { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:24px 0; }
.featured-project__meta > span { display:grid; grid-template-columns:auto 1fr; gap:2px 9px; align-items:center; padding:14px; border:1px solid var(--dc-line); border-radius:8px; }
.featured-project__meta i { grid-row:1/3; color:var(--dc-accent); font-size:20px; }
.featured-project__meta small { color:var(--dc-muted); font-size:.65rem; text-transform:uppercase; }
.featured-project__meta strong { font-size:.75rem; line-height:1.25; }
.featured-project__content .btn { align-self:flex-start; }

.project-gallery-section { padding-top:3.2rem !important; }
.project-filter-item { transition:opacity .25s ease, transform .25s ease; }
.project-filter-item.is-hidden { display:none !important; }
.project-card { overflow:hidden; background:#fff; border:1px solid var(--dc-line); border-radius:var(--dc-radius-sm); box-shadow:0 8px 28px rgba(7,19,29,.07); transition:transform .26s ease, box-shadow .26s ease; }
.project-card:hover { transform:translateY(-6px); box-shadow:var(--dc-shadow-sm); }
.project-card__media { position:relative; display:block; overflow:hidden; aspect-ratio:16/9; }
.project-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.project-card:hover .project-card__media img { transform:scale(1.045); }
.project-card__category { position:absolute; left:14px; bottom:14px; padding:6px 10px; color:#fff; background:var(--dc-accent-dark); border-radius:4px; font-size:.66rem; font-weight:800; text-transform:uppercase; }
.project-card__arrow { position:absolute; right:14px; top:14px; display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; color:#fff; background:rgba(7,19,29,.82); border-radius:50%; }
.project-card__body { padding:20px; }
.project-card__body h3 { margin-bottom:10px; font-size:1.22rem; }
.project-card__body p { margin-bottom:14px; color:var(--dc-muted); font-size:.88rem; }
.project-card__meta { display:flex; flex-wrap:wrap; gap:12px; color:var(--dc-text); font-size:.76rem; }
.project-card__meta span { display:inline-flex; gap:6px; align-items:center; }
.project-card__meta i { color:var(--dc-accent); }
.project-card__scope { display:block; margin-top:12px; padding-top:12px; color:var(--dc-muted); border-top:1px solid var(--dc-line); }

.quality-band { padding:34px 0; color:rgba(255,255,255,.74); background:var(--dc-navy); }
.quality-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.quality-item { display:flex; gap:15px; align-items:flex-start; }
.quality-item > i { color:var(--dc-accent-light); font-size:28px; }
.quality-item h2 { margin-bottom:5px; color:#fff; font-size:.92rem; }
.quality-item p { margin:0; font-size:.78rem; line-height:1.5; }

.process-line { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.process-line__item { position:relative; padding:0 22px; text-align:center; }
.process-line__item:not(:last-child)::after { content:""; position:absolute; top:34px; right:-13%; width:26%; border-top:1px dashed #7e8b94; }
.process-line__item > span { display:inline-flex; align-items:center; }
.process-line__item > span > i { display:inline-flex; align-items:center; justify-content:center; width:64px; height:64px; color:var(--dc-accent); border:2px solid var(--dc-accent); border-radius:50%; font-size:27px; background:#fff; }
.process-line__item b { display:inline-flex; align-items:center; justify-content:center; width:30px; height:30px; margin-left:-8px; color:var(--dc-accent-dark); background:#fff; border:1px solid var(--dc-accent); border-radius:50%; font-size:.78rem; }
.process-line__item h3 { margin:16px 0 8px; font-size:.9rem; text-transform:uppercase; }
.process-line__item p { margin:0; color:var(--dc-muted); font-size:.8rem; }

.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.process-card { position:relative; min-height:270px; padding:28px; overflow:hidden; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:var(--dc-radius); }
.process-card__number { position:absolute; right:20px; top:18px; color:rgba(255,255,255,.12); font-size:2.7rem; font-weight:900; }
.process-card > i { display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; margin-bottom:26px; color:var(--dc-accent-light); border:1px solid rgba(53,210,195,.4); border-radius:12px; font-size:25px; }
.process-card h3 { font-size:1.15rem; }
.process-card p { color:rgba(255,255,255,.62); font-size:.88rem; }

/* About */
.about-collage { display:grid; grid-template-columns:1.65fr .85fr; grid-template-rows:1fr 1fr; gap:14px; }
.about-collage img { width:100%; height:100%; min-height:190px; object-fit:cover; border-radius:var(--dc-radius-sm); box-shadow:var(--dc-shadow-sm); }
.about-collage__main { grid-row:1/3; min-height:520px !important; }
.check-list { display:grid; gap:12px; padding:0; margin:24px 0 0; list-style:none; }
.check-list li { position:relative; padding-left:32px; color:var(--dc-text); font-weight:600; }
.check-list li::before { content:"✓"; position:absolute; left:0; top:1px; display:flex; align-items:center; justify-content:center; width:21px; height:21px; color:#fff; background:var(--dc-accent); border-radius:50%; font-size:.68rem; font-weight:900; }
.check-list.compact li { font-size:.86rem; }

.method-card { padding:clamp(30px,5vw,55px); background:#fff; border:1px solid var(--dc-line); border-radius:var(--dc-radius); box-shadow:var(--dc-shadow-sm); }
.method-card > h2 { max-width:760px; margin-bottom:2rem; font-size:clamp(2rem,3.8vw,3.2rem); }
.method-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.method-grid article { padding:22px; background:var(--dc-soft); border-radius:10px; }
.method-grid i { color:var(--dc-accent); font-size:28px; }
.method-grid h3 { margin:14px 0 7px; font-size:1rem; }
.method-grid p { margin:0; color:var(--dc-muted); font-size:.85rem; }

.why-card-dark { padding:clamp(28px,4vw,42px); color:rgba(255,255,255,.7); background:linear-gradient(145deg,var(--dc-navy),var(--dc-navy-2)); border-radius:var(--dc-radius); box-shadow:var(--dc-shadow-dark); }
.why-card-dark h2 { margin-bottom:28px; color:#fff; }
.why-card-dark ul { display:grid; gap:22px; padding:0; margin:0; list-style:none; }
.why-card-dark li { display:flex; gap:13px; }
.why-card-dark li > i { color:var(--dc-accent-light); font-size:20px; }
.why-card-dark li span { display:flex; flex-direction:column; }
.why-card-dark li strong { color:#fff; }
.why-card-dark li small { margin-top:5px; color:rgba(255,255,255,.55); line-height:1.45; }

.value-card { height:100%; padding:30px; color:rgba(255,255,255,.65); background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.12); border-radius:var(--dc-radius-sm); text-align:center; }
.value-card i { color:var(--dc-accent-light); font-size:38px; }
.value-card h3 { margin:18px 0 10px; color:#fff; font-size:1.05rem; text-transform:uppercase; }
.value-card p { margin:0; font-size:.85rem; }

/* Reviews */
.review-card { display:flex; flex-direction:column; min-height:430px; padding:30px; background:#fff; border:1px solid var(--dc-line); border-radius:var(--dc-radius); box-shadow:var(--dc-shadow-sm); }
.review-card__top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:24px; }
.review-card__quote { color:var(--dc-accent); font-family:Georgia,serif; font-size:64px; line-height:.65; }
.review-card__stars { color:var(--dc-accent); font-size:1rem; letter-spacing:2px; }
.review-card__text { flex:1; color:var(--dc-text); font-size:.92rem; line-height:1.72; }
.review-card__text p { margin-bottom:15px; }
.review-card__footer { display:flex; align-items:center; gap:12px; margin-top:24px; padding-top:20px; border-top:1px solid var(--dc-line); }
.review-card__avatar { display:inline-flex; align-items:center; justify-content:center; flex:0 0 42px; width:42px; height:42px; color:#fff; background:var(--dc-accent); border-radius:50%; font-weight:800; }
.review-card__footer > div { display:flex; flex-direction:column; }
.review-card__footer small { color:var(--dc-muted); font-size:.72rem; }
.review-card__source { display:inline-flex; align-items:center; gap:4px; margin-left:auto; padding:6px 9px; color:var(--dc-accent-dark); background:var(--dc-accent-soft); border-radius:999px; font-size:.65rem; font-weight:800; text-transform:uppercase; }

/* Contact */
.contact-hero__row { min-height:650px; padding-block:3.5rem; }
.contact-form-card { overflow:hidden; background:#fff; border-radius:var(--dc-radius); box-shadow:0 30px 80px rgba(0,0,0,.35); }
.contact-form-card__head { display:flex; align-items:center; gap:16px; padding:22px 26px; color:#fff; background:linear-gradient(135deg,var(--dc-accent-light),var(--dc-accent-dark)); }
.contact-form-card__head > span { font-size:40px; }
.contact-form-card__head h2 { margin:0; color:#fff; font-size:1.35rem; text-transform:uppercase; }
.contact-form-card__head p { margin:3px 0 0; color:rgba(255,255,255,.82); font-size:.82rem; }
.contact-form-card__body { padding:24px; }
.dachcare-form .form-label { margin-bottom:6px; color:var(--dc-ink); font-size:.76rem; font-weight:700; }
.dachcare-form .form-control, .dachcare-form .form-select { min-height:48px; padding:.72rem .88rem; color:var(--dc-ink); background:#fff; border:1px solid #d4dde1; border-radius:6px; font-size:.88rem; }
.dachcare-form textarea.form-control { min-height:112px; }
.dachcare-form .form-control:focus, .dachcare-form .form-select:focus { border-color:var(--dc-accent); box-shadow:0 0 0 4px rgba(23,169,157,.13); }
.form-note { color:var(--dc-muted); font-size:.72rem; }

.contact-info-strip { padding:34px 0; }
.contact-info-card { display:flex; align-items:center; gap:10px; padding:22px; background:#fff; border:1px solid var(--dc-line); border-radius:var(--dc-radius-sm); box-shadow:0 6px 22px rgba(7,19,29,.05); }
.contact-info-card > span { margin: 0px 0px 0px -10px;; display:inline-flex; align-items:center; justify-content:center; flex:0 0 52px; width:52px; height:52px; color:#fff; background:var(--dc-accent); border-radius:50%; font-size:23px; }
.contact-info-card small { display:block; color:var(--dc-muted); font-size:.67rem; font-weight:800; text-transform:uppercase; }
.contact-info-card strong, .contact-info-card a { display:block; margin-top:3px; color:var(--dc-ink); font-size:.95rem; font-weight:800; line-height:1.25; }
.contact-info-card p { margin:4px 0 0; color:var(--dc-muted); font-size:.74rem; line-height:1.35; }

.contact-data-box { padding:clamp(28px,4vw,46px); background:#fff; border:1px solid var(--dc-line); border-radius:var(--dc-radius); box-shadow:var(--dc-shadow-sm); }
.contact-data-box > h2 { margin-bottom:30px; font-size:clamp(2rem,3.5vw,3.2rem); }
.contact-data-box h3 { margin-bottom:18px; color:var(--dc-accent-dark); font-size:.85rem; text-transform:uppercase; }
.contact-list { display:grid; gap:18px; padding:0; margin:0; list-style:none; }
.contact-list li { display:flex; gap:12px; align-items:flex-start; color:var(--dc-ink); }
.contact-list i { margin-top:2px; color:var(--dc-accent); font-size:21px; }
.contact-list span { display:flex; flex-direction:column; }
.contact-list strong { margin-bottom:3px; }
.contact-note { display:flex; gap:15px; margin-top:28px; padding:18px; background:var(--dc-soft); border-left:3px solid var(--dc-accent); border-radius:7px; }
.contact-note > i { color:var(--dc-accent); font-size:25px; }
.contact-note p { margin:4px 0 0; color:var(--dc-muted); font-size:.84rem; }

.map-box { overflow:hidden; background:var(--dc-navy); border-radius:var(--dc-radius); box-shadow:var(--dc-shadow-sm); }
.map-box iframe { display:block; width:100%; height:360px; border:0; }
.map-office { display:flex; gap:18px; align-items:flex-start; padding:30px; color:rgba(255,255,255,.7); }
.map-office > i { color:var(--dc-accent-light); font-size:34px; }
.map-office h2 { margin-bottom:9px; color:#fff; font-size:1.45rem; }
.map-office p { margin:0; font-size:.86rem; }

/* Singles and generic content */
.page-hero--single .page-hero__row { min-height:540px; }
.content-card { padding:clamp(28px,5vw,55px); background:#fff; border:1px solid var(--dc-line); border-radius:var(--dc-radius); box-shadow:var(--dc-shadow-sm); }
.entry-content { font-size:1.02rem; line-height:1.8; }
.entry-content h2 { margin-bottom:1.4rem; font-size:clamp(2rem,3.8vw,3.2rem); }
.entry-content h3 { margin-top:2rem; }
.entry-content ul, .entry-content ol { padding-left:1.2rem; }
.service-sidebar { top:calc(var(--dc-header-height) + 24px); padding:30px; background:var(--dc-navy); border-radius:var(--dc-radius); color:rgba(255,255,255,.65); box-shadow:var(--dc-shadow-dark); }
.service-sidebar h2 { color:#fff; font-size:1.55rem; }
.service-sidebar .check-list li { color:rgba(255,255,255,.78); }
.service-sidebar__phone { display:flex; align-items:center; gap:12px; margin-top:18px; padding-top:18px; color:#fff; border-top:1px solid rgba(255,255,255,.13); }
.service-sidebar__phone > i { display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; color:var(--dc-accent-light); border:1px solid var(--dc-accent); border-radius:50%; }
.service-sidebar__phone span { display:flex; flex-direction:column; }
.service-sidebar__phone small { color:rgba(255,255,255,.5); }
.project-detail-list { display:grid; gap:18px; padding:0; margin:20px 0 0; list-style:none; }
.project-detail-list li { display:flex; gap:12px; align-items:flex-start; }
.project-detail-list i { color:var(--dc-accent-light); font-size:21px; }
.project-detail-list span { display:flex; flex-direction:column; }
.project-detail-list small { color:rgba(255,255,255,.48); }
.project-detail-list strong { color:#fff; }
.single-project-hero-meta { display:flex; flex-wrap:wrap; gap:12px; margin-top:22px; }
.single-project-hero-meta span { display:inline-flex; align-items:center; gap:8px; padding:10px 13px; background:rgba(7,19,29,.58); border:1px solid rgba(255,255,255,.16); border-radius:6px; font-size:.78rem; }

/* Footer */
.footer-cta { color:#fff; background:linear-gradient(120deg,var(--dc-accent-dark) 0%,var(--dc-accent) 48%,var(--dc-navy) 48.2%,var(--dc-navy-2) 100%); }
.footer-cta__grid { display:grid; grid-template-columns:1.15fr .85fr; align-items:center; min-height:210px; }
.footer-cta__lead { display:flex; gap:22px; align-items:center; padding:36px 50px 36px 0; }
.footer-cta__icon { display:inline-flex; align-items:center; justify-content:center; flex:0 0 70px; width:70px; height:70px; border:1px solid rgba(255,255,255,.65); border-radius:12px; font-size:32px; }
.footer-cta__kicker { display:block; margin-bottom:6px; color:rgba(255,255,255,.72); font-size:.72rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.footer-cta h2 { margin-bottom:8px; color:#fff; font-size:clamp(1.7rem,3vw,2.7rem); }
.footer-cta p { margin:0; color:rgba(255,255,255,.76); }
.footer-cta__contact { display:flex; align-items:center; justify-content:flex-end; gap:24px; padding:36px 0 36px 50px; }
.footer-cta__phone { display:flex; align-items:center; gap:12px; color:#fff; }
.footer-cta__phone > i { display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; color:var(--dc-accent-light); border:1px solid var(--dc-accent); border-radius:50%; font-size:22px; }
.footer-cta__phone span { display:flex; flex-direction:column; line-height:1.1; }
.footer-cta__phone small { color:rgba(255,255,255,.5); }
.footer-cta__phone strong { margin-top:4px; white-space:nowrap; font-size:1.15rem; }

.site-footer { padding-top:68px; color:rgba(255,255,255,.62); background:#07131d; }
.footer-logo img { width:235px; }
.footer-description { max-width:360px; margin-top:20px; font-size:.88rem; }
.footer-title { margin-bottom:20px; color:#fff; font-size:.85rem; letter-spacing:.04em; text-transform:uppercase; }
.footer-list, .footer-contact { display:grid; gap:10px; padding:0; margin:0; list-style:none; font-size:.84rem; }
.footer-list a:hover, .footer-contact a:hover { color:var(--dc-accent-light); }
.footer-contact li { display:flex; gap:10px; align-items:flex-start; }
.footer-contact i { margin-top:2px; color:var(--dc-accent-light); }
.footer-socials { display:flex; gap:9px; margin-top:20px; }
.footer-socials a { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; color:#fff; border:1px solid rgba(255,255,255,.24); border-radius:50%; }
.footer-socials a:hover { color:#fff; background:var(--dc-accent); border-color:var(--dc-accent); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; margin-top:58px; padding:22px 0; color:rgba(255,255,255,.4); border-top:1px solid rgba(255,255,255,.1); font-size:.75rem; }
.footer-bottom p { margin:0; }

/* Floating actions */
.floating-action { position:fixed; bottom:22px; z-index:1030; display:flex; align-items:center; gap:10px; min-height:58px; padding:7px 16px 7px 7px; color:#fff; background:rgba(7,19,29,.96); border:1px solid rgba(23,169,157,.7); border-radius:16px; box-shadow:0 16px 38px rgba(0,0,0,.35); transition:opacity .28s ease, visibility .28s ease, transform .28s ease, box-shadow .28s ease; }
.floating-action:hover { color:#fff; transform:translateY(-4px); box-shadow:0 22px 46px rgba(0,0,0,.42); }
.floating-action--whatsapp { left:22px; }
.floating-action--top { right:22px; opacity:0; visibility:hidden; pointer-events:none; transform:translateY(16px); }
.floating-action--top.is-visible { opacity:1; visibility:visible; pointer-events:auto; transform:none; }
.floating-action__icon { display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; color:#fff; background:var(--dc-accent); border-radius:12px; font-size:21px; }
.floating-action--whatsapp .floating-action__icon { background:#25d366; }
.floating-action__copy { display:flex; flex-direction:column; line-height:1.1; text-align:left; }
.floating-action__copy small { color:rgba(255,255,255,.55); font-size:.61rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.floating-action__copy strong { margin-top:4px; font-size:.75rem; }

/* Generic WP */
.alignwide { max-width:1320px; margin-right:auto; margin-left:auto; }
.wp-caption, .gallery-caption { max-width:100%; }
.screen-reader-text { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Responsive */
@media (max-width:1199.98px) {
    :root { --dc-header-height:82px; }
    .navbar-brand img, .custom-logo { width:205px; }
    .dachcare-navbar .nav-link { padding:.68rem .65rem !important; font-size:.75rem; }
    .header-call { margin-left:1rem !important; }
    .header-call__text { display:none; }
    .featured-project__meta { grid-template-columns:1fr; }
    .quality-grid { grid-template-columns:repeat(2,1fr); }
    .home-gallery { grid-auto-rows:190px; }
}

@media (max-width:991.98px) {
    .fix{
        padding: 0px !important;
        height: 10px !important;
    }
     .cta-panel a{
        width: 70%;
    } 

    .site-footer > .container-xl > .row .col-lg-4, .site-footer > .container-xl > .row > .col-lg-3{
        margin: 20px 0px 0px 0px;
        padding: 10px;
        text-align: center;
        justify-content: center;
    }

    .footer-description{
        text-align: center;
        width: auto;
        max-width: 100% !important;
    }

    ul.footer-contact li{
        justify-content: center;
        align-items: center;
    }
    .site-header { position:sticky; }
    .dachcare-navbar { min-height:76px; }
    .navbar-collapse { margin-top:14px; padding:18px; background:#fff; border:1px solid var(--dc-line); border-radius:10px; box-shadow:var(--dc-shadow); }
    .dachcare-navbar .navbar-nav { align-items:stretch !important; }
    .dachcare-navbar .nav-link { padding:.8rem .4rem !important; }
    .dachcare-navbar .nav-link::after { right:auto; left:.4rem; width:35px; }
    .header-call { margin:12px 0 0 !important; padding-top:14px; border-top:1px solid var(--dc-line); }
    .header-call__text { display:flex; }
    .hero-home .hero__row, .page-hero__row { min-height:560px; }
    .hero h1, .page-hero h1, .contact-hero h1 { font-size:clamp(2.8rem,9vw,5rem); }
    .advantages-row > div:nth-child(2) .advantage-card { border-right:0; }
    .advantages-row > div:nth-child(-n+2) .advantage-card { border-bottom:1px solid var(--dc-line); }
    .home-gallery { grid-template-columns:repeat(2,1fr); grid-auto-rows:220px; }
    .home-gallery__item--1 { grid-column:span 2; }
    .contact-strip, .cta-panel { align-items:flex-start; flex-direction:column; }
    .contact-strip__actions { width:100%; justify-content:space-between; }
    .featured-project { grid-template-columns:1fr; }
    .featured-project__media img { min-height:380px; }
    .process-line { grid-template-columns:repeat(2,1fr); gap:42px 0; }
    .process-line__item:nth-child(2)::after { display:none; }
    .process-grid { grid-template-columns:repeat(2,1fr); }
    .footer-cta { background:linear-gradient(145deg,var(--dc-accent-dark),var(--dc-navy)); }
    .footer-cta__grid { grid-template-columns:1fr; }
    .footer-cta__lead, .footer-cta__contact { padding:30px 0; }
    .footer-cta__contact { justify-content:flex-start; padding-top:0; }
}

@media (max-width:767.98px) {
    :root { --dc-section:4rem; }
    .hero__overlay, .page-hero__overlay { background:linear-gradient(90deg,rgba(4,13,20,.94),rgba(4,13,20,.72)); }
    .hero-home .hero__row, .page-hero__row, .contact-hero__row { min-height:auto; padding-block:5rem; }
    .hero h1, .page-hero h1, .contact-hero h1 { font-size:clamp(2.45rem,12vw,4rem); }
    .hero__lead, .page-hero .lead, .contact-hero .lead { font-size:1.05rem; }
    .advantages-row { border:1px solid var(--dc-line); }
    .advantage-card { border-right:0; border-bottom:1px solid var(--dc-line); }
    .advantages-row > div:last-child .advantage-card { border-bottom:0; }
    .principles-grid, .method-grid { grid-template-columns:1fr; }
    .home-gallery { grid-template-columns:1fr; grid-auto-rows:250px; }
    .home-gallery__item--1 { grid-column:auto; grid-row:auto; }
    .section-title-row { align-items:flex-start; flex-direction:column; }
    .contact-strip__actions { align-items:flex-start; flex-direction:column; }
    .project-filters { border-radius:0; margin-inline:-12px; }
    .featured-project__media img { min-height:300px; }
    .featured-project__meta { grid-template-columns:1fr; }
    .quality-grid { grid-template-columns:1fr; }
    .process-line { grid-template-columns:1fr; gap:34px; }
    .process-line__item::after { display:none !important; }
    .process-grid { grid-template-columns:1fr; }
    .about-collage { grid-template-columns:1fr 1fr; grid-template-rows:auto auto; }
    .about-collage__main { grid-column:1/3; grid-row:auto; min-height:360px !important; }
    .review-card { min-height:auto; }
    .footer-cta__lead { align-items:flex-start; }
    .footer-cta__icon { width:58px; height:58px; flex-basis:58px; }
    .footer-cta__contact { align-items:flex-start; flex-direction:column; }
    .footer-bottom { align-items:flex-start; flex-direction:column; }
}

@media (max-width:575.98px) {
    .navbar-brand img, .custom-logo { width:188px; }
    .hero__actions .btn, .page-hero .hero__actions .btn, .contact-hero .hero__actions .btn { width:100%; }
    .advantage-card { padding:24px 20px; }
    .service-card__body { padding:33px 20px 21px; }
    .contact-strip, .cta-panel { padding:26px 22px; }
    .featured-project__content { padding:28px 22px; }
    .project-card__body { padding:18px; }
    .about-collage { grid-template-columns:1fr; }
    .about-collage__main { grid-column:auto; min-height:290px !important; }
    .about-collage img { min-height:220px; }
    .contact-form-card__body { padding:20px; }
    .floating-action { bottom:max(14px,env(safe-area-inset-bottom)); width:56px; height:56px; min-height:56px; padding:5px; justify-content:center; border-radius:50%; }
    .floating-action--whatsapp { left:max(14px,env(safe-area-inset-left)); }
    .floating-action--top { right:max(14px,env(safe-area-inset-right)); }
    .floating-action__icon { width:44px; height:44px; border-radius:50%; }
    .floating-action__copy { display:none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior:auto; }
    *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
    .reveal, .reveal-left, .reveal-right { opacity:1; transform:none; }
}

/* Compatibility helpers for generic and single templates */
.section-kicker {
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:1rem;
    color:var(--dc-accent-dark);
    font-size:.76rem;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.section-kicker::after { content:""; width:34px; height:2px; background:currentColor; }
.section-kicker--light { color:var(--dc-accent-light); }
.page-hero--compact .page-hero__row { min-height:390px; }
.error-page { display:flex; align-items:center; min-height:72vh; padding:5rem 0; color:#fff; background:linear-gradient(145deg,var(--dc-navy),var(--dc-navy-2)); }
.error-page__card { max-width:720px; margin:auto; text-align:center; }
.error-page__card > span { display:block; color:var(--dc-accent-light); font-size:clamp(5rem,14vw,10rem); font-weight:900; line-height:.85; }
.error-page__card h1 { margin:24px 0 14px; color:#fff; font-size:clamp(2rem,5vw,4rem); }
.error-page__card p { margin-bottom:28px; color:rgba(255,255,255,.65); }
.empty-state { max-width:720px; margin:auto; padding:50px; text-align:center; background:#fff; border:1px solid var(--dc-line); border-radius:var(--dc-radius); box-shadow:var(--dc-shadow-sm); }
.empty-state > i { color:var(--dc-accent); font-size:48px; }
.empty-state h1, .empty-state h2 { margin-top:14px; }
.min-vh-50 { min-height:50vh; }























/* =========================================================
   DACHCARE — JEDNOLITY SLIDER BOOTSTRAP
========================================================= */

.hero-slider {
    --dc-accent: #28c7bd;
    --dc-dark: #071621;

    background: var(--dc-dark);
}

/* Każdy slajd ma identyczny wymiar */

.hero-slider .hero-slide {
    min-height: 680px;

    color: #ffffff;

    background-image: var(--hero-image);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-slider .hero-slider__row {
    min-height: 680px;
    padding-top: 72px;
    padding-bottom: 90px;
}

/* Jeden identyczny overlay dla wszystkich grafik */

.hero-slider .hero-slide__overlay {
    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 15, 24, 0.97) 0%,
            rgba(4, 15, 24, 0.88) 38%,
            rgba(4, 15, 24, 0.52) 68%,
            rgba(4, 15, 24, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4, 15, 24, 0.12) 0%,
            rgba(4, 15, 24, 0.5) 100%
        );
}

/* Treść zawsze w tym samym miejscu */

.hero-slider .hero-copy {
    width: 100%;
    max-width: 700px;
}

/* Wszystkie trzy główne nagłówki mają dokładnie ten sam styl */

.hero-slider .hero-heading {
    width: 100%;
    max-width: 700px;
    min-height: 2.05em;

    margin: 0;

    color: #ffffff;

    font-size: clamp(2.75rem, 4.1vw, 4.2rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.045em !important;
    line-height: 1.02 !important;
    text-transform: none !important;
}

.hero-slider .hero-heading span {
    display: block;
    color: var(--dc-accent);
}

/* Identyczny opis na wszystkich slajdach */

.hero-slider .hero-lead {
    width: 100%;
    max-width: 660px;
    min-height: 4.8em;

    color: rgba(255, 255, 255, 0.8);

    font-size: 1.15rem;
    line-height: 1.65;
}

/* Nadtytuł */

.hero-slider .eyebrow {
    color: var(--dc-accent);

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-slider .eyebrow i {
    font-size: 1rem;
}

/* Identyczne przyciski */

.hero-slider .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;

    font-weight: 750;
}

/* Karta po prawej — identyczna na każdym slajdzie */

.hero-slider .hero-note {
    min-height: 360px;

    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            rgba(8, 27, 40, 0.96),
            rgba(4, 17, 27, 0.98)
        );

    border-top: 3px solid var(--dc-accent) !important;
    border-radius: 1.25rem;

    overflow: hidden;
    backdrop-filter: blur(12px);
}

.hero-slider .hero-note__icon {
    width: 54px;
    height: 54px;

    color: #ffffff;
    background: rgba(40, 199, 189, 0.16);

    border: 1px solid rgba(40, 199, 189, 0.3);
    border-radius: 1rem;

    font-size: 1.5rem;
}

.hero-slider .hero-note__label {
    color: var(--dc-accent);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-slider .hero-note__title {
    min-height: 2.5em;

    color: #ffffff;

    line-height: 1.2;
}

.hero-slider .hero-note li {
    color: rgba(255, 255, 255, 0.72);

    font-size: 0.95rem;
    line-height: 1.45;
}

.hero-slider .hero-note li i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: var(--dc-accent);
    font-size: 1.05rem;
}

.hero-slider .hero-note__link {
    color: #ffffff;

    font-size: 0.88rem;
    font-weight: 750;
    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.hero-slider .hero-note__link:hover {
    gap: 0.75rem !important;
    color: var(--dc-accent);
}

/* Strzałki */

.hero-slider .hero-slider__control {
    width: 5.5%;
    min-width: 58px;

    opacity: 1;
}

.hero-slider .hero-slider__arrow {
    width: 48px;
    height: 48px;

    color: #ffffff;
    background: rgba(5, 20, 31, 0.76);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    font-size: 1.15rem;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.hero-slider .hero-slider__control:hover .hero-slider__arrow,
.hero-slider .hero-slider__control:focus-visible .hero-slider__arrow {
    background: var(--dc-accent);
    border-color: var(--dc-accent);

    transform: scale(1.08);
}

/* Dolne wskaźniki */

.hero-slider .hero-slider__indicators {
    bottom: 26px;
    z-index: 5;

    gap: 0.5rem;
}

.hero-slider .hero-slider__indicators button {
    width: 34px;
    height: 4px;
    margin: 0;

    background: rgba(255, 255, 255, 0.42);

    border: 0;
    border-radius: 999px;

    opacity: 1;

    transition:
        width 0.3s ease,
        background-color 0.3s ease;
}

.hero-slider .hero-slider__indicators button.active {
    width: 60px;
    background: var(--dc-accent);
}

/* Jednolite animacje dla każdego slajdu */

.hero-slider .carousel-item .hero-copy,
.hero-slider .carousel-item .hero-note {
    opacity: 0;
    transform: translateY(22px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.hero-slider .carousel-item.active .hero-copy,
.hero-slider .carousel-item.active .hero-note {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider .carousel-item.active .hero-note {
    transition-delay: 0.15s;
}

/* =========================================================
   RESPONSYWNOŚĆ
========================================================= */

@media (max-width: 1199.98px) {
    .hero-slider .hero-heading {
        font-size: clamp(2.6rem, 4vw, 3.75rem) !important;
    }

    .hero-slider .hero-note {
        min-height: 340px;
    }
}

@media (max-width: 991.98px) {
    .hero-slider .hero-slide,
    .hero-slider .hero-slider__row {
        min-height: 640px;
    }

    .hero-slider .hero-slide {
        background-position: 65% center;
    }

    .hero-slider .hero-slide__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 15, 24, 0.97) 0%,
                rgba(4, 15, 24, 0.88) 58%,
                rgba(4, 15, 24, 0.55) 100%
            );
    }

    .hero-slider .hero-heading {
        min-height: 0;

        font-size: clamp(2.6rem, 7vw, 3.6rem) !important;
    }

    .hero-slider .hero-lead {
        min-height: 0;
    }

    .hero-slider .hero-slider__control {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-slider .hero-slide,
    .hero-slider .hero-slider__row {
        min-height: 610px;
    }

    .hero-slider .hero-slider__row {
        padding-top: 70px;
        padding-bottom: 85px;
    }

    .hero-slider .hero-heading {
        font-size: clamp(2.35rem, 10vw, 3.1rem) !important;
        line-height: 1.04 !important;
    }

    .hero-slider .hero-lead {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 575.98px) {
    .hero-slider .hero-slide {
        background-position: 68% center;
    }

    .hero-slider .hero-slide__overlay {
        background: rgba(4, 15, 24, 0.82);
    }

    .hero-slider .hero-heading {
        font-size: clamp(2.15rem, 10vw, 2.75rem) !important;
    }

    .hero-slider .hero-copy .d-flex.flex-wrap {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    .hero-slider .hero-copy .btn {
        width: 100%;
    }

    .hero-slider .hero-slider__indicators {
        bottom: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slider .carousel-item,
    .hero-slider .carousel-item *,
    .hero-slider .hero-slider__arrow {
        transition: none !important;
    }
}

.dc-wysokosc{
    height: 300px !important;
}

/* =========================================================
   DACHCARE HERO SLIDER — IDENTYCZNA WYSOKOŚĆ KAŻDEGO SLAJDU
========================================================= */

#dachcareHeroSlider {
    --dc-slider-height: 680px;

    position: relative;
    width: 100%;
    height: var(--dc-slider-height);
    min-height: 0 !important;

    overflow: hidden;
    background: #071621;
}

/*
 * Bootstrap musi otrzymać wysokość na każdym poziomie.
 * Dzięki temu carousel nie oblicza jej ponownie dla kolejnych slajdów.
 */
#dachcareHeroSlider .carousel-inner {
    width: 100%;
    height: 100%;
    min-height: 0 !important;

    overflow: hidden;
}

#dachcareHeroSlider .carousel-item {
    width: 100%;
    height: 100%;
    min-height: 0 !important;
}

#dachcareHeroSlider .hero-slide {
    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;
    min-height: 0 !important;

    overflow: hidden;

    background-image: var(--hero-image);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#dachcareHeroSlider .hero-slide > .container-xl {
    width: 100%;
    height: 100%;
}

#dachcareHeroSlider .hero-slider__row {
    width: 100%;
    height: 100%;
    min-height: 0 !important;

    margin-right: 0;
    margin-left: 0;

    padding-top: 52px;
    padding-bottom: 70px;
}

/* =========================================================
   IDENTYCZNA PRZESTRZEŃ TREŚCI
========================================================= */

#dachcareHeroSlider .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    max-width: 700px;
    min-height: 430px;
}

/*
 * Każdy główny nagłówek zajmuje tę samą przestrzeń.
 * Nie przesuwa opisu i przycisków między slajdami.
 */
#dachcareHeroSlider .hero-heading {
    display: block;

    width: 100%;
    max-width: 700px;
    min-height: 2.08em;

    margin: 0;

    color: #ffffff;

    font-size: clamp(2.7rem, 3vw, 3.05rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.045em !important;
    line-height: 1.04 !important;
    text-transform: none !important;
}

#dachcareHeroSlider .hero-heading span {
    display: block;
    color: var(--dc-accent, #28c7bd);
}

/*
 * Opisy także otrzymują równą przestrzeń,
 * więc przyciski pozostają na tej samej wysokości.
 */
#dachcareHeroSlider .hero-lead {
    width: 100%;
    max-width: 660px;
    min-height: 5em;

    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;

    color: rgba(255, 255, 255, 0.8);

    font-size: 1.12rem;
    line-height: 1.65;
}

/* Przyciski zawsze w tym samym miejscu */

#dachcareHeroSlider .hero-copy > .d-flex:last-child {
    min-height: 52px;
    margin-top: 1.5rem !important;
}

/* =========================================================
   KARTY PO PRAWEJ — IDENTYCZNY ROZMIAR
========================================================= */

#dachcareHeroSlider .hero-note {
    width: 100%;
    overflow: hidden;
}

#dachcareHeroSlider .hero-note .card-body {
    width: 100%;
    height: 100%;
}

#dachcareHeroSlider .hero-note__title {
    min-height: 2.45em;

    line-height: 1.2;
}

#dachcareHeroSlider .hero-note ul {
    min-height: 112px;
}

/* =========================================================
   OVERLAY — TEN SAM DLA KAŻDEJ GRAFIKI
========================================================= */

#dachcareHeroSlider .hero-slide__overlay {
    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 15, 24, 0.97) 0%,
            rgba(4, 15, 24, 0.89) 38%,
            rgba(4, 15, 24, 0.52) 68%,
            rgba(4, 15, 24, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4, 15, 24, 0.1) 0%,
            rgba(4, 15, 24, 0.5) 100%
        );
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {
    #dachcareHeroSlider {
        --dc-slider-height: 660px;
    }

    #dachcareHeroSlider .hero-slider__row {
        padding-top: 45px;
        padding-bottom: 65px;
    }

    #dachcareHeroSlider .hero-heading {
        font-size: clamp(2.55rem, 4.5vw, 3.65rem) !important;
    }

    #dachcareHeroSlider .hero-copy {
        min-height: 410px;
    }

    #dachcareHeroSlider .hero-note {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px;
    }
}

@media (max-width: 991.98px) {
    #dachcareHeroSlider {
        --dc-slider-height: 640px;
    }

    #dachcareHeroSlider .hero-slide {
        background-position: 64% center;
    }

    #dachcareHeroSlider .hero-slider__row {
        padding-top: 45px;
        padding-bottom: 70px;
    }

    #dachcareHeroSlider .hero-copy {
        min-height: 0;
    }

    #dachcareHeroSlider .hero-heading {
        min-height: 2.1em;

        font-size: clamp(2.5rem, 7vw, 3.5rem) !important;
    }

    #dachcareHeroSlider .hero-lead {
        min-height: 5.2em;
    }
}

/* =========================================================
   TELEFON
========================================================= */

@media (max-width: 767.98px) {
    #dachcareHeroSlider {
        --dc-slider-height: 680px;
    }

    #dachcareHeroSlider .hero-slider__row {
        padding-top: 48px;
        padding-bottom: 82px;
    }

    #dachcareHeroSlider .hero-slide {
        background-position: 67% center;
    }

    #dachcareHeroSlider .hero-heading {
        min-height: 2.2em;

        font-size: clamp(2.25rem, 9vw, 3rem) !important;
        line-height: 1.05 !important;
    }

    #dachcareHeroSlider .hero-lead {
        min-height: 6.2em;

        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 575.98px) {
    #dachcareHeroSlider {
        --dc-slider-height: 720px;
    }

    #dachcareHeroSlider .hero-slide {
        background-position: 70% center;
    }

    #dachcareHeroSlider .hero-slide__overlay {
        background: rgba(4, 15, 24, 0.84);
    }

    #dachcareHeroSlider .hero-slider__row {
        padding-top: 42px;
        padding-bottom: 78px;
    }

    #dachcareHeroSlider .hero-heading {
        min-height: 2.35em;

        font-size: clamp(2.05rem, 10vw, 2.65rem) !important;
    }

    #dachcareHeroSlider .hero-lead {
        min-height: 7.2em;
    }

    #dachcareHeroSlider .hero-copy > .d-flex:last-child {
        display: grid !important;
        grid-template-columns: 1fr;

        width: 100%;
        min-height: 120px;
    }

    #dachcareHeroSlider .hero-copy .btn {
        width: 100%;
    }
}


/* =========================================================
   KARTY ZWYKŁYCH WPISÓW KATEGORII OFERTA
========================================================= */

.service-grid--light > [class*="col-"] {
    display: flex;
}

.service-card--offer {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid rgba(7, 31, 42, 0.1);
    border-radius: 22px;

    box-shadow: 0 20px 55px rgba(6, 25, 35, 0.09);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card--offer:hover {
    transform: translateY(-8px);

    border-color: rgba(32, 184, 173, 0.38);

    box-shadow: 0 30px 70px rgba(6, 25, 35, 0.15);
}

.service-card__media {
    position: relative;
    display: block;

    width: 100%;
    aspect-ratio: 16 / 10;

    overflow: hidden;
    background: #081f29;
}

.service-card__image {
    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.service-card--offer:hover .service-card__image {
    transform: scale(1.06);
}

.service-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(4, 18, 26, 0.68) 100%
        );
}

.service-card__number {
    position: absolute;
    top: 16px;
    left: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 44px;
    height: 34px;
    padding: 0 12px;

    color: #ffffff;
    background: rgba(6, 25, 35, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;

    backdrop-filter: blur(10px);
}

.service-card__arrow {
    position: absolute;
    top: 16px;
    right: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    color: #ffffff;
    background: rgba(6, 25, 35, 0.75);

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;

    font-size: 17px;

    backdrop-filter: blur(10px);

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.service-card--offer:hover .service-card__arrow {
    background: #20b8ad;
    transform: translateY(-2px);
}

.service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 25px;
}

.service-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    color: #159d94;
    background: rgba(32, 184, 173, 0.1);

    border: 1px solid rgba(32, 184, 173, 0.24);
    border-radius: 14px;

    font-size: 21px;
}

.service-card__label {
    color: #718087;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card__title {
    margin: 0 0 13px;

    color: #071f2a;

    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.service-card__title a {
    color: inherit;
    text-decoration: none;
}

.service-card__title a:hover {
    color: #159d94;
}

.service-card__excerpt {
    display: -webkit-box;
    flex: 1;

    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;

    margin: 0 0 22px;

    color: #65747b;

    font-size: 15px;
    line-height: 1.7;
}

.service-card__footer {
    margin-top: auto;
    padding-top: 18px;

    border-top: 1px solid rgba(7, 31, 42, 0.09);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #159d94;

    font-size: 14px;
    font-weight: 900;
    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.service-card__link:hover {
    gap: 13px;
    color: #071f2a;
}

@media (max-width: 575.98px) {
    .service-card--offer {
        border-radius: 18px;
    }

    .service-card__body {
        padding: 21px;
    }

    .service-card__title {
        font-size: 21px;
    }
}

.wpcf7-response-output{
    color: #25d366 !important;
}

.wpcf7-list-item-label{
    color: #07131d !important;
}

.dc-gallery-item > figcaption.wp-element-caption {
    padding: 10px !important;
}
