/* ===========================================
   FIXED HEADER ZA NEVE - TOP + MAIN
   =========================================== */

/* Glavni container headera */
#hfg_header-grid.hfg_header.site-header,
.header #hfg_header-grid,
.site-header.hfg_header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
}

/* Uvek pokaži top bar na učitavanju */
.hfg_header .header-top {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease !important;
}

/* Main header (ostaje pri scrollu) */
.hfg_header .header-main {
    transition: transform 0.3s ease, padding 0.3s ease;
}

/* Sadržaj stranice - pomeren ispod oba headera */
#page,
body > .container,
.site-content {
    padding-top: 150px !important; /* ~30px top bar + ~120px main header */
    transition: padding-top 0.3s ease;
}

/* ===========================================
   RESPONSIVE PRILAGOĐAVANJA
   =========================================== */

/* Tablet (768-1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    #page,
    body > .container,
    .site-content {
        padding-top: 120px !important;
    }
}

/* Mobile (<768px) */
@media (max-width: 768px) {
    .hfg_header .header-top {
        display: block !important;
        font-size: 12px !important;
    }
    #page,
    body > .container,
    .site-content {
        padding-top: 100px !important;
    }
}

/* ===========================================
   WP ADMIN BAR (ulogovani korisnici)
   =========================================== */

.admin-bar .hfg_header {
    top: 32px !important;
}
.admin-bar #page {
    padding-top: calc(150px + 32px) !important;
}
@media (max-width: 768px) {
    .admin-bar #page {
        padding-top: calc(100px + 32px) !important;
    }
}

/* ===========================================
   SHRINK (opciono) - efekat na scroll
   =========================================== */

.hfg_header.shrunk .header-main {
    padding: 5px 0 !important;
    transform: scale(0.98);
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* slider.css */

:root {
    --hs-gold:        #F1C206;
    --hs-gold-dark:   #d4a904;
    --hs-white:       #ffffff;
    --hs-dark:        #0a0a0a;
    --hs-slide-dur:   5000ms;
    --hs-transition:  900ms;
}

/* ── BASE ── */
.hs-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: #000;
}

/* ── TRACK / SLIDES ── */
.hs-track {
    position: absolute;
    inset: 0;
}

.hs-panel {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity var(--hs-transition) cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}

.hs-panel.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── OVERLAYS ── */
.hs-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, .82) 0%,
        rgba(0, 0, 0, .55) 55%,
        rgba(0, 0, 0, .15) 100%
    );
}

.hs-veil--red {
    background: linear-gradient(
        105deg,
        rgba(10, 0, 0, .88) 0%,
        rgba(30, 5, 0, .60) 55%,
        rgba(0, 0, 0, .15) 100%
    );
}

/* ── CONTENT ── */
.hs-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6% 80px;
    max-width: 700px;

    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: .2s;
}

.hs-panel.active .hs-body {
    opacity: 1;
    transform: translateY(0);
}

/* ── TAG / EYEBROW ── */
.hs-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--hs-gold);
    margin-bottom: 14px;
    padding: 5px 12px;
    border: 1px solid rgba(241, 194, 6, .35);
    border-radius: 2px;
    width: fit-content;
    backdrop-filter: blur(4px);
    background: rgba(241, 194, 6, .08);
}

.hs-tag--alert {
    border-color: rgba(255, 60, 60, .5);
    color: #ff6b6b;
    background: rgba(255, 60, 60, .1);
    animation: hs-pulse 1.8s ease-in-out infinite;
}

@keyframes hs-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .65; }
}

/* ── HEADING ── */
.hs-heading {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--hs-white);
    margin: 0 0 18px;
    letter-spacing: -.01em;
}

.hs-heading em {
    font-style: italic;
    color: var(--hs-gold);
    font-weight: 700;
}

/* ── LEAD / NOTE ── */
.hs-lead {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, .88);
    margin: 0 0 18px;
    line-height: 1.45;
}

.hs-note {
    font-size: clamp(.9rem, 1.4vw, 1.05rem);
    color: rgba(255, 255, 255, .65);
    margin: 0 0 28px;
    line-height: 1.6;
}

/* ── CHECKLIST ── */
.hs-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.hs-list li {
    font-size: clamp(.85rem, 1.3vw, .95rem);
    color: rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hs-tick {
    color: var(--hs-gold);
    font-size: .9rem;
    flex-shrink: 0;
}

/* ── BUTTONS ── */
.hs-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hs-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.hs-cta-main {
    background: var(--hs-gold);
    color: var(--hs-dark);
}

.hs-cta-main:hover {
    background: var(--hs-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(241, 194, 6, .45);
}

.hs-cta-ghost {
    background: rgba(255, 255, 255, .1);
    color: var(--hs-white);
    border: 1px solid rgba(255, 255, 255, .3);
}

.hs-cta-ghost:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.hs-cta--urgent {
    background: #e63030;
    color: #fff;
    animation: hs-btn-glow 2s ease-in-out infinite;
}

.hs-cta--urgent:hover {
    background: #c42424;
    box-shadow: 0 8px 28px rgba(230, 48, 48, .55);
}

@keyframes hs-btn-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(230, 48, 48, 0); }
    50%       { box-shadow: 0 0 24px rgba(230, 48, 48, .55); }
}

/* ── PROGRESS BAR ── */
.hs-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, .12);
    z-index: 10;
}

.hs-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--hs-gold);
    transition: width linear;
}

/* ── NAV DOTS ── */
.hs-dots {
    position: absolute;
    right: 5%;
    bottom: 50%;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.hs-pip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    opacity: .45;
    transition: opacity .3s;
}

.hs-pip:hover,
.hs-pip.active {
    opacity: 1;
}

.hs-pip-num {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--hs-white);
    min-width: 22px;
    text-align: right;
}

.hs-pip.active .hs-pip-num {
    color: var(--hs-gold);
}

.hs-pip-label {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width .4s ease, color .3s;
}

.hs-pip:hover .hs-pip-label,
.hs-pip.active .hs-pip-label {
    max-width: 160px;
    color: var(--hs-gold);
}

/* Dot line */
.hs-pip::before {
    content: '';
    display: block;
    width: 2px;
    height: 28px;
    background: rgba(255, 255, 255, .2);
    transition: background .3s, height .3s;
    order: -1;
}

.hs-pip.active::before {
    background: var(--hs-gold);
    height: 36px;
}

/* ── ARROWS ── */
.hs-btn-prev,
.hs-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: var(--hs-white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s, transform .25s;
    backdrop-filter: blur(6px);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.hs-btn-prev { left: 2.5%; }
.hs-btn-next { right: 2.5%; }

.hs-btn-prev:hover,
.hs-btn-next:hover {
    background: var(--hs-gold);
    color: var(--hs-dark);
    transform: translateY(-50%) scale(1.08);
}

/* ── COUNTER ── */
.hs-counter {
    position: absolute;
    left: 6%;
    bottom: 26px;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.hs-counter-now {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hs-gold);
    line-height: 1;
    transition: opacity .3s;
}

.hs-counter-slash {
    font-size: 1rem;
    color: rgba(255, 255, 255, .3);
}

.hs-counter-all {
    font-size: 1rem;
    color: rgba(255, 255, 255, .4);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hs-dots { display: none; }
}

@media (max-width: 768px) {
    .hs-hero { height: 100svh; min-height: 500px; }

    .hs-body {
        padding: 80px 5% 110px;
        max-width: 100%;
        justify-content: flex-end;
    }

    .hs-veil {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, .92) 0%,
            rgba(0, 0, 0, .55) 60%,
            rgba(0, 0, 0, .2) 100%
        );
    }

    .hs-actions { flex-direction: column; gap: 10px; }
    .hs-cta    { justify-content: center; }

    .hs-counter {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .hs-btn-prev,
    .hs-btn-next {
        position: absolute;
        top: auto;
        bottom: 14px;
        transform: none;
        width: 40px;
        height: 40px;
        z-index: 10;
    }

    .hs-btn-prev { left: calc(50% - 80px); }
    .hs-btn-next { right: calc(50% - 80px); }

    .hs-btn-prev:hover,
    .hs-btn-next:hover { transform: scale(1.08); }
}

@media (max-width: 480px) {
    .hs-heading { font-size: 2.2rem; }
    .hs-list    { display: none; }
}

/* trust image */

.image-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 22px;
    background: #000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.image-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #F1C206;
    border-radius: 50%;
    flex-shrink: 0;
}

.image-badge-icon svg {
    width: 10px;
    height: 10px;
}

.image-badge-item span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
}

/* text section */

.ec-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #F1C206;
    margin-bottom: 18px;
    padding: 5px 12px;
    border: 1px solid rgba(241,194,6,.35);
    background: rgba(241,194,6,.07);
}

.ec-about-title {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin: 0 0 20px;
}

.ec-about-title em {
    font-style: italic;
    color: #F1C206;
}

.ec-about-line {
    width: 40px;
    height: 3px;
    background: #F1C206;
    margin-bottom: 24px;
}

.ec-about-text p,
.ec-html-widget p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 14px;
}

.ec-btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F1C206;
    color: #111;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    margin-top: 18px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background .2s;
}

.ec-btn-about:hover {
    background: #d4a904;
    color: #111;
}

/* leistungen */

.ec-ls { background:#f7f7f5; padding:60px 5%; box-sizing:border-box; }
.ec-ls-inner { max-width:1100px; margin:0 auto; }
 
/* HEADER */
.ec-ls-eyebrow { display:inline-block; font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:#F1C206; margin-bottom:14px; padding:5px 12px; border:1px solid rgba(241,194,6,.35); background:rgba(241,194,6,.07); }
.ec-ls h2 { font-size:clamp(1.5rem,2.8vw,2.3rem); font-weight:700; color:#111; margin:0 0 12px; line-height:1.2; }
.ec-ls h2 em { font-style:italic; color:#F1C206; }
.ec-ls-sub { font-size:1rem; color:#666; margin:0 0 40px; line-height:1.7; max-width:560px; }
 
/* CORE GRID */
.ec-ls-core { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:20px; }
.ec-ls-card-dark { background:#111; border-radius:6px; padding:32px 24px; position:relative; overflow:hidden; display:flex; flex-direction:column; }
.ec-ls-card-dark .ec-top-bar { position:absolute; top:0; left:0; width:100%; height:4px; }
.ec-ls-card-dark .ec-icon { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:18px; flex-shrink:0; }
.ec-ls-card-dark .ec-tag { font-size:10px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; margin-bottom:10px; }
.ec-ls-card-dark h3 { font-size:1.1rem; font-weight:700; color:#fff; margin:0 0 12px; line-height:1.3; }
.ec-ls-card-dark p { font-size:.88rem; line-height:1.7; color:rgba(255,255,255,.6); margin:0; flex:1; }
 
/* SECONDARY GRID */
.ec-ls-secondary { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:16px; }
.ec-ls-card-light { background:#fff; border-radius:6px; padding:22px 18px; border:1px solid #e8e8e8; display:flex; flex-direction:column; }
.ec-ls-card-light .ec-icon-sm { width:36px; height:36px; background:#f7f7f5; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:12px; flex-shrink:0; }
.ec-ls-card-light h3 { font-size:.92rem; font-weight:700; color:#111; margin:0 0 8px; line-height:1.3; }
.ec-ls-card-light p { font-size:.82rem; line-height:1.65; color:#666; margin:0; flex:1; }
 
/* BONUS GRID */
.ec-ls-bonus { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.ec-ls-card-mini { background:#fff; border-radius:6px; padding:18px 18px; border:1px solid #e8e8e8; display:flex; align-items:center; gap:14px; }
.ec-ls-card-mini .ec-icon-xs { width:32px; height:32px; background:#f7f7f5; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ec-ls-card-mini h3 { font-size:.86rem; font-weight:700; color:#111; margin:0 0 3px; }
.ec-ls-card-mini p { font-size:.76rem; line-height:1.5; color:#888; margin:0; }
 
/* ── TABLET VELIKI (900px) ── */
@media (max-width:900px) {
  .ec-ls-secondary { grid-template-columns:repeat(2,1fr); }
  .ec-ls-bonus { grid-template-columns:repeat(2,1fr); }
}
 
/* ── TABLET MALI (680px) ── */
@media (max-width:680px) {
  .ec-ls-core { grid-template-columns:1fr 1fr; }
  .ec-ls-secondary { grid-template-columns:1fr 1fr; }
  .ec-ls-bonus { grid-template-columns:1fr 1fr; }
}
 
/* ── MOBILE (480px) ── */
@media (max-width:480px) {
  .ec-ls { padding:48px 4%; }
  .ec-ls-core { grid-template-columns:1fr; }
  .ec-ls-secondary { grid-template-columns:1fr 1fr; gap:12px; }
  .ec-ls-card-light { padding:18px 14px; }
  .ec-ls-bonus { grid-template-columns:1fr; }
  .ec-ls-card-dark { padding:28px 20px; }
}

/* funnel */

.ec-fn { background:#111; padding:60px 5%; box-sizing:border-box; }
.ec-fn-inner { max-width:1100px; margin:0 auto; }
 
/* HEADER */
.ec-fn-head { text-align:center; margin-bottom:48px; }
.ec-fn-eyebrow { display:inline-block; font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:#F1C206; margin-bottom:14px; padding:5px 12px; border:1px solid rgba(241,194,6,.35); background:rgba(241,194,6,.07); }
.ec-fn h2 { font-size:clamp(1.5rem,2.8vw,2.3rem); font-weight:700; color:#fff; margin:0 0 12px; line-height:1.2; }
.ec-fn h2 em { font-style:italic; color:#F1C206; }
.ec-fn-sub { font-size:1rem; color:rgba(255,255,255,.5); margin:0; line-height:1.7; }
 
/* STEPS GRID */
.ec-fn-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:24px; position:relative; }
.ec-fn-connector { position:absolute; top:40px; left:calc(12.5% + 8px); right:calc(12.5% + 8px); height:1px; background:rgba(241,194,6,.2); pointer-events:none; }
.ec-fn-step { background:#1a1a1a; border-radius:6px; padding:28px 22px; position:relative; z-index:1; display:flex; flex-direction:column; }
.ec-fn-step.ec-fn-last { border:1px solid rgba(241,194,6,.3); }
.ec-fn-step.ec-fn-last::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:#F1C206; border-radius:6px 6px 0 0; }
.ec-fn-num { width:44px; height:44px; background:#F1C206; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1rem; font-weight:700; color:#111; margin-bottom:20px; flex-shrink:0; }
.ec-fn-step h3 { font-size:.97rem; font-weight:700; color:#fff; margin:0 0 10px; line-height:1.3; }
.ec-fn-step p { font-size:.84rem; line-height:1.7; color:rgba(255,255,255,.55); margin:0 0 16px; flex:1; }
.ec-fn-checks { display:flex; flex-direction:column; gap:6px; }
.ec-fn-check { display:flex; align-items:center; gap:8px; }
.ec-fn-check-icon { width:16px; height:16px; background:rgba(241,194,6,.15); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.ec-fn-check span { font-size:.77rem; color:rgba(255,255,255,.65); }
 
/* TRUST + CTA */
.ec-fn-bottom { display:grid; grid-template-columns:1fr auto; gap:24px; align-items:center; background:#1a1a1a; border-radius:6px; padding:26px 28px; border:1px solid rgba(255,255,255,.07); }
.ec-fn-trust-label { font-size:.75rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.35); margin:0 0 12px; }
.ec-fn-trust-items { display:flex; flex-wrap:wrap; gap:8px 24px; }
.ec-fn-ctas { display:flex; flex-direction:column; gap:10px; flex-shrink:0; }
.ec-btn-gold { display:inline-flex; align-items:center; justify-content:center; gap:8px; background:#F1C206; color:#111; font-size:.8rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; padding:13px 22px; clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); white-space:nowrap; }
.ec-btn-outline { display:inline-flex; align-items:center; justify-content:center; gap:8px; background:transparent; color:rgba(255,255,255,.75); font-size:.8rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; padding:12px 22px; border:1px solid rgba(255,255,255,.2); clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); white-space:nowrap; }
 
/* ── TABLET VELIKI (900px) ── */
@media (max-width:900px) {
  .ec-fn-steps { grid-template-columns:repeat(2,1fr); }
  .ec-fn-connector { display:none; }
  .ec-fn-bottom { grid-template-columns:1fr; gap:20px; }
  .ec-fn-ctas { flex-direction:row; }
}
 
/* ── TABLET MALI (600px) ── */
@media (max-width:600px) {
  .ec-fn { padding:48px 4%; }
  .ec-fn-ctas { flex-direction:column; }
  .ec-btn-gold, .ec-btn-outline { width:100%; }
}
 
/* ── MOBILE (480px) ── */
@media (max-width:480px) {
  .ec-fn-steps { grid-template-columns:1fr; gap:12px; }
  .ec-fn-step { padding:24px 18px; }
  .ec-fn-bottom { padding:22px 18px; }
}

/* standorte */

.ec-st { background:#f7f7f5; padding:60px 5%; box-sizing:border-box; }
.ec-st-inner { max-width:1100px; margin:0 auto; }
 
/* HEADER */
.ec-st-eyebrow { display:inline-block; font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:#F1C206; margin-bottom:14px; padding:5px 12px; border:1px solid rgba(241,194,6,.35); background:rgba(241,194,6,.07); }
.ec-st h2 { font-size:clamp(1.5rem,2.8vw,2.3rem); font-weight:700; color:#111; margin:0 0 12px; line-height:1.2; }
.ec-st h2 em { font-style:italic; color:#F1C206; }
.ec-st-sub { font-size:1rem; color:#666; margin:0 0 40px; line-height:1.7; max-width:520px; }
 
/* GRID */
.ec-st-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:18px; }
.ec-st-wide { grid-column:span 2; }
 
/* DARK CARD (Hauptstandort) */
.ec-st-card-dark { background:#111; border-radius:6px; padding:28px 24px; position:relative; overflow:hidden; display:flex; flex-direction:column; }
.ec-st-card-dark::before { content:''; position:absolute; top:0; left:0; width:100%; height:4px; background:#F1C206; }
.ec-st-card-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.ec-st-badge { font-size:10px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; }
.ec-st-pin { width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ec-st-card-dark h3 { font-size:1.1rem; font-weight:700; color:#fff; margin:0 0 10px; line-height:1.3; }
.ec-st-card-dark p { font-size:.86rem; line-height:1.7; color:rgba(255,255,255,.55); margin:0 0 20px; flex:1; }
.ec-st-link-gold { display:inline-flex; align-items:center; gap:7px; color:#F1C206; font-size:.76rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; text-decoration:none; }
 
/* LIGHT CARD */
.ec-st-card-light { background:#fff; border-radius:6px; padding:28px 24px; border:1px solid #e8e8e8; display:flex; flex-direction:column; }
.ec-st-card-light h3 { font-size:1rem; font-weight:700; color:#111; margin:0 0 10px; line-height:1.3; }
.ec-st-card-light p { font-size:.86rem; line-height:1.7; color:#666; margin:0 0 20px; flex:1; }
.ec-st-link-dark { display:inline-flex; align-items:center; gap:7px; color:#111; font-size:.76rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; text-decoration:none; }
 
/* BOTTOM ROW */
.ec-st-bottom { display:grid; grid-template-columns:1fr auto; gap:20px; align-items:center; padding:24px 28px; background:#fff; border-radius:6px; border:1px solid #e8e8e8; }
.ec-st-bottom p { font-size:.87rem; line-height:1.75; color:#666; margin:0; }
.ec-st-bottom strong { color:#111; font-weight:600; }
.ec-btn-gold { display:inline-flex; align-items:center; gap:8px; background:#F1C206; color:#111; font-size:.8rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; padding:13px 22px; clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); white-space:nowrap; flex-shrink:0; }
 
/* ── TABLET VELIKI (900px) ── */
@media (max-width:900px) {
  .ec-st-grid { grid-template-columns:repeat(2,1fr); }
  .ec-st-wide { grid-column:span 2; }
}
 
/* ── TABLET MALI (600px) ── */
@media (max-width:600px) {
  .ec-st-grid { grid-template-columns:1fr 1fr; }
  .ec-st-wide { grid-column:span 2; }
  .ec-st-bottom { grid-template-columns:1fr; gap:16px; }
  .ec-btn-gold { width:100%; justify-content:center; }
}
 
/* ── MOBILE (480px) ── */
@media (max-width:480px) {
  .ec-st { padding:48px 4%; }
  .ec-st-grid { grid-template-columns:1fr; gap:12px; }
  .ec-st-wide { grid-column:span 1; }
  .ec-st-card-dark, .ec-st-card-light { padding:24px 18px; }
  .ec-st-bottom { padding:20px 18px; }
}

/* kundenstimmen */

.ec-tm { background:#111; padding:80px 5%; box-sizing:border-box; }
.ec-tm-inner { max-width:900px; margin:0 auto; text-align:center; }
.ec-tm-eyebrow { display:inline-block; font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:#F1C206; margin-bottom:16px; padding:5px 12px; border:1px solid rgba(241,194,6,.35); background:rgba(241,194,6,.07); }
.ec-tm h2 { font-size:clamp(1.5rem,2.8vw,2.2rem); font-weight:700; color:#fff; margin:0 0 10px; line-height:1.2; }
.ec-tm h2 em { font-style:italic; color:#F1C206; }
.ec-tm-sub { font-size:1rem; color:rgba(255,255,255,.45); margin:0 0 48px; }

/* CARD */
.ec-tm-card { background:#1a1a1a; border-radius:8px; padding:48px 52px; position:relative; border:1px solid rgba(255,255,255,.07); }
.ec-tm-quote-mark { position:absolute; top:32px; left:44px; font-size:5rem; line-height:1; color:rgba(241,194,6,.12); font-family:Georgia,serif; pointer-events:none; }
.ec-tm-stars { font-size:1.3rem; letter-spacing:3px; color:#F1C206; margin:0 0 28px; }
.ec-tm-text { font-size:clamp(1rem,1.8vw,1.2rem); line-height:1.8; color:rgba(255,255,255,.85); margin:0 0 32px; font-style:italic; position:relative; z-index:1; }
.ec-tm-author-row { display:flex; align-items:center; justify-content:center; gap:14px; margin-bottom:32px; }
.ec-tm-avatar { width:48px; height:48px; background:#F1C206; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1.1rem; color:#111; flex-shrink:0; }
.ec-tm-author-name { font-size:1rem; font-weight:700; color:#fff; margin:0 0 3px; text-align:left; }
.ec-tm-author-loc { font-size:.82rem; color:rgba(255,255,255,.45); text-align:left; }

/* TRUST STRIP */
.ec-tm-trust { display:flex; align-items:center; justify-content:center; gap:6px; padding:14px 20px; background:rgba(241,194,6,.06); border:1px solid rgba(241,194,6,.18); border-radius:6px; margin-bottom:36px; flex-wrap:wrap; }
.ec-tm-trust-item { display:flex; align-items:center; gap:7px; font-size:.82rem; color:rgba(255,255,255,.7); white-space:nowrap; }
.ec-tm-trust-sep { color:rgba(255,255,255,.15); font-size:1rem; }
.ec-tm-trust-star { color:#F1C206; font-size:.9rem; }

/* CTA */
.ec-tm-cta { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; }
.ec-btn-gold { display:inline-flex; align-items:center; gap:8px; background:#F1C206; color:#111; font-size:.82rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; padding:14px 26px; clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); }
.ec-btn-ghost { display:inline-flex; align-items:center; gap:7px; color:rgba(255,255,255,.55); font-size:.78rem; font-weight:500; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.2); padding-bottom:2px; }
.ec-btn-ghost:hover { color:#F1C206; border-color:rgba(241,194,6,.5); }

@media(max-width:600px) {
  .ec-tm { padding:52px 5%; }
  .ec-tm-card { padding:36px 24px; }
  .ec-tm-quote-mark { font-size:3.5rem; top:20px; left:20px; }
}

/* kontakt */

.ec-ct { background:#f7f7f5; padding:80px 5%; box-sizing:border-box; }
.ec-ct-inner { max-width:1100px; margin:0 auto; }

/* TOP BAR */
.ec-ct-topbar { background:#111; border-radius:6px; padding:14px 24px; display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:48px; }
.ec-ct-topbar-dot { width:8px; height:8px; background:#F1C206; border-radius:50%; animation:ec-blink 1.5s ease-in-out infinite; flex-shrink:0; }
@keyframes ec-blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.ec-ct-topbar p { font-size:.85rem; font-weight:600; color:rgba(255,255,255,.8); margin:0; letter-spacing:.02em; }
.ec-ct-topbar a { color:#F1C206; text-decoration:none; font-weight:700; }

/* HEADER */
.ec-ct-eyebrow { display:inline-block; font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:#F1C206; margin-bottom:14px; padding:5px 12px; border:1px solid rgba(241,194,6,.35); background:rgba(241,194,6,.07); }
.ec-ct h2 { font-size:clamp(1.5rem,2.8vw,2.2rem); font-weight:700; color:#111; margin:0 0 10px; line-height:1.2; }
.ec-ct h2 em { font-style:italic; color:#F1C206; }
.ec-ct-sub { font-size:1rem; color:#666; margin:0 0 40px; }

/* GRID */
.ec-ct-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:32px; align-items:start; }

/* LEFT COL */
.ec-ct-left { display:flex; flex-direction:column; gap:20px; }

/* CTA CARD */
.ec-ct-cta-card { background:#111; border-radius:6px; padding:32px 28px; display:flex; flex-direction:column; align-items:flex-start; gap:16px; position:relative; overflow:hidden; }
.ec-ct-cta-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:4px; background:#F1C206; }
.ec-btn-call { display:inline-flex; align-items:center; gap:10px; background:#F1C206; color:#111; font-size:.95rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; text-decoration:none; padding:16px 28px; clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px)); width:100%; justify-content:center; box-sizing:border-box; }
.ec-ct-cta-hint { font-size:.82rem; color:rgba(255,255,255,.45); margin:0; text-align:center; width:100%; }

/* CONTACT INFO */
.ec-ct-info { background:#fff; border-radius:6px; padding:28px 24px; border:1px solid #e8e8e8; display:flex; flex-direction:column; gap:18px; }
.ec-ct-info-row { display:flex; gap:14px; align-items:flex-start; }
.ec-ct-info-icon { width:36px; height:36px; background:#f7f7f5; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.ec-ct-info-label { font-size:10px; font-weight:600; letter-spacing:.15em; text-transform:uppercase; color:#999; margin:0 0 5px; }
.ec-ct-info-val { font-size:.9rem; color:#111; margin:0; line-height:1.7; }
.ec-ct-info-val a { color:#111; text-decoration:none; font-weight:500; }
.ec-ct-info-val a:hover { color:#F1C206; }

/* TRUST */
.ec-ct-trust { background:#fff; border-radius:6px; padding:22px 24px; border:1px solid #e8e8e8; }
.ec-ct-trust-title { font-size:.78rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:#999; margin:0 0 14px; }
.ec-ct-trust-items { display:flex; flex-direction:column; gap:9px; }
.ec-ct-trust-item { display:flex; align-items:center; gap:10px; font-size:.86rem; color:#444; }
.ec-ct-trust-icon { width:18px; height:18px; background:rgba(241,194,6,.12); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }

/* RIGHT COL - FORM */
.ec-ct-form-wrap { background:#fff; border-radius:6px; padding:36px 32px; border:1px solid #e8e8e8; }
.ec-ct-form-title { font-size:1.1rem; font-weight:700; color:#111; margin:0 0 6px; }
.ec-ct-form-sub { font-size:.87rem; color:#666; margin:0 0 24px; line-height:1.6; }
/* Mock form fields for preview */
.ec-field { display:flex; flex-direction:column; gap:5px; margin-bottom:16px; }
.ec-field label { font-size:.78rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:#888; }
.ec-field input, .ec-field textarea, .ec-field select { width:100%; padding:11px 14px; border:1px solid #e0e0e0; border-radius:4px; font-size:.9rem; color:#111; background:#fff; box-sizing:border-box; outline:none; }
.ec-field textarea { resize:vertical; min-height:100px; }
.ec-field input:focus, .ec-field textarea:focus { border-color:#F1C206; }
.ec-field-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.ec-btn-submit { display:inline-flex; align-items:center; justify-content:center; gap:8px; background:#F1C206; color:#111; font-size:.85rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; border:none; padding:15px 28px; width:100%; clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px)); cursor:pointer; margin-top:4px; }
.ec-urgency { display:flex; align-items:center; gap:8px; margin-top:14px; padding:10px 14px; background:#f7f7f5; border-radius:4px; }
.ec-urgency-dot { width:7px; height:7px; background:#F1C206; border-radius:50%; flex-shrink:0; }
.ec-urgency p { font-size:.78rem; color:#888; margin:0; }

/* RESPONSIVE */
@media(max-width:860px) {
  .ec-ct-grid { grid-template-columns:1fr; }
}
@media(max-width:480px) {
  .ec-ct { padding:48px 4%; }
  .ec-ct-form-wrap { padding:24px 18px; }
  .ec-ct-cta-card { padding:24px 18px; }
  .ec-field-row { grid-template-columns:1fr; }
  .ec-ct-topbar { flex-direction:column; text-align:center; gap:6px; }
}

/* data small */

label.wpforms-field-label-inline {
  font-size: 11px !important;
}

/* button submit */

button#wpforms-submit-268.wpforms-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1C206;
    color: #111;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 26px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

/* faq */

/* TRUST BAR */
.ec-tb { background:#111; padding:0 5%; }
.ec-tb-inner { max-width:1100px; margin:0 auto; display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:0; }
.ec-tb-item { display:flex; align-items:center; gap:8px; padding:16px 28px; font-size:.8rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.65); border-right:1px solid rgba(255,255,255,.08); white-space:nowrap; }
.ec-tb-item:last-child { border-right:none; }
.ec-tb-icon { width:16px; height:16px; background:rgba(241,194,6,.15); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }

/* FAQ */
.ec-faq { background:#f7f7f5; padding:80px 5%; box-sizing:border-box; }
.ec-faq-inner { max-width:800px; margin:0 auto; }
.ec-faq-eyebrow { display:inline-block; font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:#F1C206; margin-bottom:14px; padding:5px 12px; border:1px solid rgba(241,194,6,.35); background:rgba(241,194,6,.07); }
.ec-faq h2 { font-size:clamp(1.5rem,2.8vw,2.2rem); font-weight:700; color:#111; margin:0 0 10px; line-height:1.2; }
.ec-faq h2 em { font-style:italic; color:#F1C206; }
.ec-faq-sub { font-size:1rem; color:#666; margin:0 0 40px; }

/* ACCORDION */
.ec-faq-list { display:flex; flex-direction:column; gap:8px; }
.ec-faq-item { background:#fff; border:1px solid #e8e8e8; border-radius:6px; overflow:hidden; }
.ec-faq-q { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 24px; cursor:pointer; user-select:none; }
.ec-faq-q h3 { font-size:.97rem; font-weight:700; color:#111; margin:0; line-height:1.4; }
.ec-faq-arrow { width:28px; height:28px; background:#f7f7f5; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .2s, transform .3s; }
.ec-faq-item.open .ec-faq-arrow { background:#F1C206; transform:rotate(180deg); }
.ec-faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease, padding .3s; }
.ec-faq-item.open .ec-faq-a { max-height:300px; }
.ec-faq-a p { font-size:.9rem; line-height:1.75; color:#555; margin:0; padding:0 24px 20px; border-top:1px solid #f0f0f0; padding-top:16px; }

/* CTA after FAQ */
.ec-faq-cta { margin-top:32px; display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.ec-btn-gold { display:inline-flex; align-items:center; gap:8px; background:#F1C206; color:#111; font-size:.82rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; padding:14px 26px; clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); }
.ec-faq-cta-hint { font-size:.85rem; color:#888; }

/* RESPONSIVE */
@media(max-width:680px) {
  .ec-tb-item { padding:14px 16px; font-size:.72rem; }
  .ec-faq { padding:52px 4%; }
  .ec-faq-q { padding:16px 18px; }
  .ec-faq-a p { padding:0 18px 16px; padding-top:14px; }
}
@media(max-width:480px) {
  .ec-tb-inner { flex-direction:column; gap:0; }
  .ec-tb-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.08); width:100%; justify-content:center; }
  .ec-tb-item:last-child { border-bottom:none; }
}

/* page */

:root {
    --ec-gold:    #F1C206;
    --ec-gold-dk: #d4a904;
    --ec-dark:    #111111;
    --ec-dark2:   #1a1a1a;
    --ec-gray:    #f7f7f5;
    --ec-border:  #e8e8e8;
}
 
/* ── ATOMS ── */
.ec-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--ec-gold);
    margin-bottom: 14px; padding: 5px 12px;
    border: 1px solid rgba(241,194,6,.35);
    background: rgba(241,194,6,.07);
}
.ec-btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ec-gold); color: #111;
    font-size: .85rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    text-decoration: none; padding: 14px 28px; border: none; cursor: pointer;
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    transition: background .2s;
}
.ec-btn-gold:hover  { background: var(--ec-gold-dk); color: #111; }
.ec-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,.75);
    font-size: .85rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    text-decoration: none; padding: 13px 26px;
    border: 1px solid rgba(255,255,255,.25);
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    transition: background .2s;
}
.ec-btn-outline:hover { background: rgba(255,255,255,.08); }
.ec-btn-red {
    display: inline-flex; align-items: center; gap: 8px;
    background: #e63030; color: #fff;
    font-size: .85rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    text-decoration: none; padding: 14px 28px;
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    flex-shrink: 0; transition: background .2s;
}
.ec-btn-red:hover { background: #c42424; color: #fff; }
.ec-check-icon {
    width: 18px; height: 18px;
    background: rgba(241,194,6,.15);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ec-check-row { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
 
/* ── SECTION WRAPPERS ── */
.ec-section          { padding: 64px 5%; box-sizing: border-box; }
.ec-section-dark     { background: var(--ec-dark); }
.ec-section-gray     { background: var(--ec-gray); }
.ec-section-white    { background: #fff; }
.ec-section-inner    { max-width: 1100px; margin: 0 auto; }
.ec-section-inner-sm { max-width: 820px;  margin: 0 auto; }
 
.ec-section-header      { margin-bottom: 40px; }
.ec-section-header h2   { font-size: clamp(1.4rem,2.5vw,2.1rem); font-weight: 700; color: #111; margin: 0 0 10px; line-height: 1.2; }
.ec-section-header h2 em { font-style: italic; color: var(--ec-gold); }
.ec-section-header p    { font-size: 1rem; color: #666; margin: 0; line-height: 1.7; max-width: 560px; }
.ec-section-header-dark h2 { color: #fff; }
.ec-section-header-dark p  { color: rgba(255,255,255,.5); }
.ec-section-header-center  { text-align: center; }
.ec-section-header-center p { max-width: 100%; }
 
/* ── HERO ── */
.ec-hero-lp {
    position: relative; background: var(--ec-dark);
    min-height: 500px; display: flex; align-items: center;
    padding: 80px 5%; box-sizing: border-box; overflow: hidden;
}
.ec-hero-lp-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .25;
}
.ec-hero-lp-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg,rgba(0,0,0,.9) 0%,rgba(0,0,0,.5) 60%,rgba(0,0,0,.1) 100%);
}
.ec-hero-lp-content { position: relative; z-index: 2; max-width: 700px; }
.ec-hero-lp-content h1 { font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 700; color: #fff; margin: 0 0 16px; line-height: 1.1; }
.ec-hero-lp-content h1 em { font-style: italic; color: var(--ec-gold); }
.ec-hero-lp-content p  { font-size: 1.05rem; color: rgba(255,255,255,.7); margin: 0 0 32px; line-height: 1.75; max-width: 560px; }
.ec-hero-lp-btns { display: flex; gap: 14px; flex-wrap: wrap; }
 
/* ── TRUST BAR ── */
.ec-trust-bar { background: var(--ec-dark); padding: 0 5%; }
.ec-trust-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; }
.ec-tb-item {
    display: flex; align-items: center; gap: 8px;
    padding: 15px 28px;
    font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    color: rgba(255,255,255,.6);
    border-right: 1px solid rgba(255,255,255,.07);
    white-space: nowrap;
}
.ec-tb-item:last-child { border-right: none; }
 
/* ── WHY US ── */
.ec-why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.ec-why-item {
    background: #fff; border-radius: 6px; padding: 20px 18px;
    border: 1px solid var(--ec-border);
    display: flex; gap: 12px; align-items: flex-start;
}
.ec-why-item h3 { font-size: .9rem; font-weight: 700; color: #111; margin: 0 0 4px; }
.ec-why-item p  { font-size: .82rem; line-height: 1.6; color: #666; margin: 0; }
 
/* ── SERVICES GRID ── */
.ec-srv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ec-srv-card {
    background: #fff; border-radius: 6px; padding: 22px 18px;
    border: 1px solid var(--ec-border);
    display: flex; gap: 14px; align-items: flex-start;
}
.ec-srv-icon {
    width: 36px; height: 36px; background: var(--ec-gray);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
}
.ec-srv-card h3 { font-size: .92rem; font-weight: 700; color: #111; margin: 0 0 5px; }
.ec-srv-card p  { font-size: .82rem; line-height: 1.6; color: #666; margin: 0; }
 
/* ── NOTDIENST BANNER ── */
.ec-notdienst {
    background: var(--ec-dark); border-radius: 6px; padding: 36px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
    border-left: 4px solid #e63030;
}
.ec-notdienst h2 { font-size: 1.3rem; font-weight: 700; color: #fff; margin: 0 0 8px; }
.ec-notdienst p  { font-size: .9rem; color: rgba(255,255,255,.6); margin: 0; line-height: 1.6; }
 
/* ── PROCESS STEPS ── */
.ec-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ec-step {
    background: #fff; border-radius: 6px; padding: 24px 20px;
    border: 1px solid var(--ec-border);
    display: flex; flex-direction: column; gap: 10px;
}
.ec-step-num {
    width: 40px; height: 40px; background: var(--ec-gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: .95rem; font-weight: 700; color: #111; flex-shrink: 0;
}
.ec-step h3 { font-size: .95rem; font-weight: 700; color: #111; margin: 0; }
.ec-step p  { font-size: .84rem; line-height: 1.65; color: #666; margin: 0; }
 
/* ── TESTIMONIALS (from [ec_testimonials] shortcode) ── */
.ec-tm-wrap { position: relative; }
.ec-tm-card {
    display: block;
    background: var(--ec-dark2); border-radius: 8px; padding: 44px 48px;
    border: 1px solid rgba(255,255,255,.07); position: relative;
}
.ec-tm-card.ec-tm-active { display: block; }
.ec-tm-quote {
    position: absolute; top: 28px; left: 40px;
    font-size: 5rem; line-height: 1;
    color: rgba(241,194,6,.1); font-family: Georgia, serif;
    pointer-events: none;
}
.ec-tm-stars { font-size: 1.2rem; letter-spacing: 3px; color: var(--ec-gold); margin: 0 0 24px; }
.ec-tm-text  { font-size: clamp(1rem,1.6vw,1.15rem); line-height: 1.8; color: rgba(255,255,255,.85); margin: 0 0 28px; font-style: italic; position: relative; z-index: 1; }
.ec-tm-author-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ec-tm-avatar { width: 46px; height: 46px; background: var(--ec-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: #111; flex-shrink: 0; }
.ec-tm-name  { font-size: .95rem; font-weight: 700; color: #fff; margin: 0 0 3px; }
.ec-tm-loc   { font-size: .8rem; color: rgba(255,255,255,.45); margin: 0; }
.ec-tm-glink { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.45); font-size: .78rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 2px; }
.ec-tm-glink:hover { color: var(--ec-gold); }
.ec-tm-nav   { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.ec-tm-dot   { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); border: none; cursor: pointer; padding: 0; transition: background .2s; }
.ec-tm-dot-active { background: var(--ec-gold); }
 
/* ── FAQ ── */
.ec-faq-list { display: flex; flex-direction: column; gap: 8px; }
.ec-faq-item { background: #fff; border: 1px solid var(--ec-border); border-radius: 6px; overflow: hidden; }
.ec-faq-q    { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; user-select: none; }
.ec-faq-q h3 { font-size: .97rem; font-weight: 700; color: #111; margin: 0; line-height: 1.4; }
.ec-faq-arrow { width: 28px; height: 28px; background: var(--ec-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .3s; }
.ec-faq-item.open .ec-faq-arrow { background: var(--ec-gold); transform: rotate(180deg); }
.ec-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ec-faq-item.open .ec-faq-a { max-height: 400px; }
.ec-faq-a-inner { font-size: .9rem; line-height: 1.75; color: #555; padding: 16px 24px 20px; border-top: 1px solid #f0f0f0; }
 
/* ── MAP ── */
.ec-map { border-radius: 6px; overflow: hidden; border: 1px solid var(--ec-border); }
.ec-map iframe { display: block; width: 100%; height: 320px; border: none; }
 
/* ── CONTACT BLOCK (from [ec_contact] shortcode) ── */
.ec-contact-block  { background: #fff; border-radius: 6px; border: 1px solid var(--ec-border); display: flex; flex-direction: column; gap: 16px; padding: 26px 22px; }
.ec-cb-row    { display: flex; gap: 14px; align-items: flex-start; }
.ec-cb-icon   { width: 36px; height: 36px; background: var(--ec-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ec-cb-label  { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: #999; margin: 0 0 4px; }
.ec-cb-val    { font-size: .9rem; color: #111; margin: 0; line-height: 1.7; }
.ec-cb-val a  { color: #111; text-decoration: none; font-weight: 500; }
.ec-cb-val a:hover { color: var(--ec-gold); }
.ec-cb-sep    { height: 1px; background: #f0f0f0; }
 
/* ── CONTACT SECTION LAYOUT ── */
.ec-contact-grid   { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; align-items: start; }
.ec-contact-left   { display: flex; flex-direction: column; gap: 18px; }
.ec-cta-call       { background: var(--ec-dark); border-radius: 6px; padding: 28px 24px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 14px; }
.ec-cta-call::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--ec-gold); }
.ec-cta-call-hint  { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; text-align: center; }
.ec-trust-block    { background: #fff; border-radius: 6px; padding: 22px; border: 1px solid var(--ec-border); }
.ec-trust-block-title { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #999; margin: 0 0 14px; }
.ec-trust-items    { display: flex; flex-direction: column; gap: 9px; }
.ec-form-wrap      { background: #fff; border-radius: 6px; padding: 36px 32px; border: 1px solid var(--ec-border); }
.ec-form-wrap h3   { font-size: 1.1rem; font-weight: 700; color: #111; margin: 0 0 6px; }
.ec-form-sub       { font-size: .87rem; color: #666; margin: 0 0 24px; }
.ec-urgency-bar    { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding: 10px 14px; background: var(--ec-gray); border-radius: 4px; }
.ec-urgency-dot    { width: 7px; height: 7px; background: var(--ec-gold); border-radius: 50%; flex-shrink: 0; }
.ec-urgency-bar p  { font-size: .78rem; color: #888; margin: 0; }
 
/* ── FINAL CTA ── */
.ec-final-cta { background: var(--ec-dark); border-radius: 8px; padding: 56px 48px; text-align: center; position: relative; overflow: hidden; }
.ec-final-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--ec-gold); }
.ec-final-cta h2   { font-size: clamp(1.5rem,2.5vw,2.1rem); font-weight: 700; color: #fff; margin: 0 0 12px; line-height: 1.2; }
.ec-final-cta h2 em { font-style: italic; color: var(--ec-gold); }
.ec-final-cta p    { font-size: 1rem; color: rgba(255,255,255,.55); margin: 0 0 32px; }
.ec-final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
 
/* ── SEO TEXT ── */
.ec-seo-text      { font-size: .95rem; line-height: 1.85; color: #555; }
.ec-seo-text h2   { font-size: 1.3rem; font-weight: 700; color: #111; margin: 0 0 16px; }
.ec-seo-text p    { margin: 0 0 16px; }
 
/* ══ RESPONSIVE ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .ec-srv-grid        { grid-template-columns: repeat(2,1fr); }
    .ec-steps           { grid-template-columns: repeat(2,1fr); }
    .ec-why-grid        { grid-template-columns: 1fr; }
    .ec-contact-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .ec-trust-bar-inner { flex-direction: column; }
    .ec-tb-item         { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); width: 100%; padding: 13px 20px; }
    .ec-tb-item:last-child { border-bottom: none; }
    .ec-notdienst       { flex-direction: column; text-align: center; padding: 28px 24px; }
    .ec-tm-card         { padding: 32px 24px; }
    .ec-final-cta       { padding: 40px 24px; }
    .ec-section         { padding: 48px 4%; }
}
@media (max-width: 480px) {
    .ec-srv-grid        { grid-template-columns: 1fr; }
    .ec-steps           { grid-template-columns: 1fr; }
    .ec-why-grid        { grid-template-columns: 1fr; }
    .ec-hero-lp         { min-height: 420px; padding: 60px 4%; }
    .ec-form-wrap       { padding: 24px 18px; }
    .ec-hero-lp-btns    { flex-direction: column; }
}

/* ============================================================
   LEISTUNGEN – energietec connect GmbH
   CSS – externes Stylesheet
   Design-Token: identisch mit Startseite
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --ec-gold:      #F1C206;
  --ec-gold-dim:  rgba(241,194,6,.12);
  --ec-dark:      #111111;
  --ec-dark-2:    #1a1a1a;
  --ec-dark-3:    #242424;
  --ec-light:     #f7f7f5;
  --ec-white:     #ffffff;
  --ec-text:      rgba(255,255,255,.75);
  --ec-text-dark: #333333;
  --ec-green:     #2ecc71;
  --ec-green-dim: rgba(46,204,113,.12);
  --ec-radius:    6px;
  --ec-radius-lg: 10px;
  --ec-trans:     .25s ease;
}

/* ── SHARED UTILITIES ───────────────────────────────────────── */
.ls-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ec-gold);
  margin-bottom: .75rem;
}
.ls-eyebrow--light { color: var(--ec-gold); }

/* ── HERO ────────────────────────────────────────────────────── */
.ls-hero {
  background: var(--ec-dark);
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ls-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.ls-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--ec-white);
  line-height: 1.15;
  margin: 0 0 1.1rem;
}
.ls-hero h1 em {
  font-style: normal;
  color: var(--ec-gold);
}
.ls-hero-sub {
  font-size: 1.05rem;
  color: var(--ec-text);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2rem;
}
.ls-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── INTRO ───────────────────────────────────────────────────── */
.ls-intro {
  background: var(--ec-light);
  padding: 40px 24px;
}
.ls-intro-inner {
  max-width: 820px;
  margin: 0 auto;
}
.ls-intro p {
  font-size: .97rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ── SHARED BUTTONS ─────────────────────────────────────────── */
.ls-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ec-gold);
  color: var(--ec-dark);
  font-size: .875rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--ec-radius);
  text-decoration: none;
  transition: background var(--ec-trans), transform var(--ec-trans);
}
.ls-btn-primary:hover {
  background: #d9ae00;
  transform: translateY(-1px);
}
.ls-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ec-white);
  font-size: .875rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--ec-radius);
  border: 1px solid rgba(255,255,255,.25);
  text-decoration: none;
  transition: border-color var(--ec-trans), color var(--ec-trans);
}
.ls-btn-secondary:hover {
  border-color: var(--ec-gold);
  color: var(--ec-gold);
}

/* ── LEISTUNG BLOCKS ─────────────────────────────────────────── */
.ls-block {
  padding: 72px 0;
}
.ls-block--dark {
  background: var(--ec-dark);
}
.ls-block--light {
  background: var(--ec-white);
}
.ls-block-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Block head */
.ls-block-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}
.ls-block-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--ec-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ls-block-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ec-gold);
  margin-bottom: .5rem;
}
.ls-block-tag--green { color: var(--ec-green); }

.ls-block--dark .ls-block-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ec-white);
  line-height: 1.2;
  margin: 0;
}
.ls-block--light .ls-block-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ec-dark);
  line-height: 1.2;
  margin: 0;
}
.ls-block-head h2 em {
  font-style: normal;
  color: var(--ec-gold);
}

/* Block body: 2-col layout */
.ls-block-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* Main text column */
.ls-block--dark .ls-block-text p {
  color: var(--ec-text);
  line-height: 1.8;
  margin: 0 0 1.1rem;
  font-size: .97rem;
}
.ls-block--light .ls-block-text p {
  color: #555;
  line-height: 1.8;
  margin: 0 0 1.1rem;
  font-size: .97rem;
}
.ls-block--dark .ls-block-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ec-white);
  margin: 1.8rem 0 .9rem;
}
.ls-block--light .ls-block-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ec-dark);
  margin: 1.8rem 0 .9rem;
}

/* UL */
.ls-ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ls-block--dark .ls-ul li {
  color: var(--ec-text);
  font-size: .92rem;
  padding: .45rem 0 .45rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  line-height: 1.6;
  position: relative;
}
.ls-block--light .ls-ul li {
  color: #555;
  font-size: .92rem;
  padding: .45rem 0 .45rem 1.4rem;
  border-bottom: 1px solid #ebebeb;
  line-height: 1.6;
  position: relative;
}
.ls-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--ec-gold);
  border-radius: 50%;
}
.ls-ul li:last-child { border-bottom: none; }

/* Norm box */
.ls-norm-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(241,194,6,.08);
  border-left: 3px solid var(--ec-gold);
  padding: 12px 16px;
  border-radius: 0 var(--ec-radius) var(--ec-radius) 0;
  margin-top: 1.6rem;
  font-size: .82rem;
  flex-wrap: wrap;
}
.ls-block--dark .ls-norm-box { color: rgba(255,255,255,.6); }
.ls-block--light .ls-norm-box { color: #666; }
.ls-norm-box--green {
  background: var(--ec-green-dim);
  border-left-color: var(--ec-green);
}
.ls-norm-label {
  font-weight: 700;
  color: var(--ec-gold);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  flex-shrink: 0;
}
.ls-norm-box--green .ls-norm-label { color: var(--ec-green); }

/* ── ASIDE CARD ──────────────────────────────────────────────── */
.ls-aside-card {
  background: var(--ec-dark-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--ec-radius-lg);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.ls-block--light .ls-aside-card {
  background: var(--ec-light);
  border-color: #e5e5e5;
}
.ls-aside-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ec-gold);
  margin-bottom: 1rem;
}
.ls-check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.4rem; }
.ls-check-item { display: flex; align-items: flex-start; gap: 10px; }
.ls-check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--ec-gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.ls-block--dark .ls-check-item span:last-child {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.ls-block--light .ls-check-item span:last-child {
  font-size: .88rem;
  color: #444;
  line-height: 1.5;
}
.ls-aside-btn {
  display: block;
  text-align: center;
  background: var(--ec-gold);
  color: var(--ec-dark);
  font-size: .875rem;
  font-weight: 700;
  padding: 13px;
  border-radius: var(--ec-radius);
  text-decoration: none;
  transition: background var(--ec-trans);
}
.ls-aside-btn:hover { background: #d9ae00; }

/* Aside FAQ box */
.ls-aside-faq {
  background: var(--ec-dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--ec-radius-lg);
  padding: 20px 22px;
}
.ls-block--light .ls-aside-faq {
  background: var(--ec-light);
  border-color: #e5e5e5;
}
.ls-aside-faq-q {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ec-white);
  margin-bottom: .7rem;
}
.ls-block--light .ls-aside-faq-q { color: var(--ec-dark); }
.ls-aside-faq-a {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.ls-block--light .ls-aside-faq-a { color: #666; }

/* ── SECONDARY SERVICES ─────────────────────────────────────── */
.ls-secondary {
  background: var(--ec-dark-2);
  padding: 72px 0;
}
.ls-secondary-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.ls-secondary h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ec-white);
  margin: 0 0 .8rem;
}
.ls-secondary h2 em {
  font-style: normal;
  color: var(--ec-gold);
}
.ls-secondary-sub {
  color: var(--ec-text);
  font-size: .97rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.ls-sec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ls-sec-card {
  background: var(--ec-dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--ec-radius-lg);
  padding: 28px 22px;
  text-align: left;
  transition: border-color var(--ec-trans), transform var(--ec-trans);
}
.ls-sec-card:hover {
  border-color: rgba(241,194,6,.35);
  transform: translateY(-3px);
}
.ls-sec-icon {
  width: 44px;
  height: 44px;
  background: var(--ec-gold-dim);
  border-radius: var(--ec-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.ls-sec-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ec-white);
  margin: 0 0 .7rem;
}
.ls-sec-card p {
  font-size: .86rem;
  color: var(--ec-text);
  line-height: 1.7;
  margin: 0;
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
.ls-trust-bar {
  background: var(--ec-dark);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
}
.ls-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
}
.ls-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.ls-trust-icon {
  width: 16px;
  height: 16px;
  background: var(--ec-gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── FINAL CTA ───────────────────────────────────────────────── */
.ls-cta-final {
  background: var(--ec-dark);
  padding: 80px 24px;
  text-align: center;
}
.ls-cta-final-inner {
  max-width: 680px;
  margin: 0 auto;
}
.ls-cta-final h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--ec-white);
  line-height: 1.2;
  margin: .5rem 0 1rem;
}
.ls-cta-final h2 em {
  font-style: normal;
  color: var(--ec-gold);
}
.ls-cta-final p {
  color: var(--ec-text);
  font-size: .97rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.ls-cta-final a[href^="tel"] { color: var(--ec-gold); text-decoration: none; }
.ls-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ls-sec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .ls-block-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ls-block-head { flex-direction: column; }
  .ls-sec-grid { grid-template-columns: 1fr; }
  .ls-hero { padding: 52px 0 44px; }
  .ls-block { padding: 52px 0; }
  .ls-secondary { padding: 52px 0; }
}

@media (max-width: 480px) {
  .ls-hero-btns,
  .ls-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .ls-btn-primary,
  .ls-btn-secondary {
    justify-content: center;
  }
}

/* ============================================================
   ÜBER UNS – energietec connect GmbH
   CSS – externes Stylesheet
   ============================================================ */

:root {
  --ec-gold:     #F1C206;
  --ec-gold-dim: rgba(241,194,6,.12);
  --ec-dark:     #111111;
  --ec-dark-2:   #1a1a1a;
  --ec-dark-3:   #242424;
  --ec-light:    #f7f7f5;
  --ec-white:    #ffffff;
  --ec-text:     rgba(255,255,255,.75);
  --ec-radius:   6px;
  --ec-radius-lg:10px;
  --ec-trans:    .25s ease;
}

/* ── EYEBROW ─────────────────────────────────────────────────── */
.ue-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ec-gold);
  margin-bottom: .75rem;
}
.ue-eyebrow--light { color: var(--ec-gold); }

/* ── HERO ────────────────────────────────────────────────────── */
.ue-hero {
  background: var(--ec-dark);
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ue-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.ue-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--ec-white);
  line-height: 1.15;
  margin: 0 0 1.1rem;
}
.ue-hero h1 em { font-style: normal; color: var(--ec-gold); }
.ue-hero-sub {
  font-size: 1.05rem;
  color: var(--ec-text);
  line-height: 1.75;
  margin: 0;
}

/* ── INHABER ─────────────────────────────────────────────────── */
.ue-inhaber {
  background: var(--ec-white);
  padding: 72px 0;
}
.ue-inhaber-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.ue-inhaber-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ec-dark);
  line-height: 1.2;
  margin: 0 0 1.2rem;
}
.ue-inhaber-text h2 em { font-style: normal; color: var(--ec-gold); }
.ue-inhaber-text p {
  font-size: .97rem;
  color: #555;
  line-height: 1.8;
  margin: 0 0 1rem;
}

.ue-inhaber-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid #e8e8e8;
  border-radius: var(--ec-radius-lg);
  overflow: hidden;
}
.ue-fact {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid #f0f0f0;
}
.ue-fact:last-child { border-bottom: none; }
.ue-fact-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #999;
}
.ue-fact-val {
  font-size: .88rem;
  color: var(--ec-dark);
  font-weight: 500;
}

/* Inhaber card */
.ue-inhaber-card {
  background: var(--ec-dark);
  border-radius: var(--ec-radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.ue-inhaber-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ec-gold-dim);
  border: 2px solid var(--ec-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ec-gold);
  margin: 0 auto 1rem;
}
.ue-inhaber-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ec-white);
  margin: 0 0 .25rem;
}
.ue-inhaber-role {
  font-size: .82rem;
  color: var(--ec-gold);
  font-weight: 600;
  margin: 0 0 .2rem;
}
.ue-inhaber-company {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.ue-inhaber-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 1.2rem 0;
}
.ue-inhaber-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.ue-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}

/* ── MERKMALE ────────────────────────────────────────────────── */
.ue-merkmale {
  background: var(--ec-dark-2);
  padding: 72px 0;
}
.ue-merkmale-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.ue-merkmale h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ec-white);
  margin: 0 0 3rem;
}
.ue-merkmale h2 em { font-style: normal; color: var(--ec-gold); }

.ue-merkmale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
.ue-merkmal-card {
  background: var(--ec-dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--ec-radius-lg);
  padding: 28px 22px;
  transition: border-color var(--ec-trans), transform var(--ec-trans);
}
.ue-merkmal-card:hover {
  border-color: rgba(241,194,6,.3);
  transform: translateY(-3px);
}
.ue-merkmal-icon {
  width: 46px;
  height: 46px;
  background: var(--ec-gold-dim);
  border-radius: var(--ec-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.ue-merkmal-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ec-white);
  margin: 0 0 .7rem;
}
.ue-merkmal-card p {
  font-size: .86rem;
  color: var(--ec-text);
  line-height: 1.7;
  margin: 0;
}

/* ── LEISTUNGEN ──────────────────────────────────────────────── */
.ue-leistungen {
  background: var(--ec-white);
  padding: 72px 0;
}
.ue-leistungen-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.ue-leistungen h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ec-dark);
  margin: 0 0 .8rem;
}
.ue-leistungen h2 em { font-style: normal; color: var(--ec-gold); }
.ue-leistungen-sub {
  font-size: .97rem;
  color: #666;
  margin: 0 0 2rem;
  line-height: 1.7;
}
.ue-ls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #e8e8e8;
  border-radius: var(--ec-radius-lg);
  overflow: hidden;
  margin-bottom: 1.8rem;
}
.ue-ls-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  font-size: .9rem;
  color: #444;
}
.ue-ls-item:nth-child(even) { border-right: none; }
.ue-ls-item:nth-last-child(-n+2) { border-bottom: none; }
.ue-ls-dot {
  width: 6px;
  height: 6px;
  background: var(--ec-gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.ue-ls-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ec-gold);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap var(--ec-trans);
}
.ue-ls-link:hover { gap: 12px; }

/* ── EINSATZGEBIET ───────────────────────────────────────────── */
.ue-gebiet {
  background: var(--ec-dark);
  padding: 72px 0;
}
.ue-gebiet-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.ue-gebiet h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ec-white);
  margin: 0 0 .8rem;
}
.ue-gebiet h2 em { font-style: normal; color: var(--ec-gold); }
.ue-gebiet-sub {
  font-size: .97rem;
  color: var(--ec-text);
  line-height: 1.7;
  margin: 0 0 2.5rem;
}
.ue-gebiet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.ue-gebiet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ec-dark-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}
.ue-gebiet-item--main {
  border-color: rgba(241,194,6,.4);
  color: var(--ec-white);
  font-weight: 600;
}
.ue-gebiet-item em { font-style: normal; color: var(--ec-gold); margin-left: 4px; font-size: .8rem; }

/* ── TRUST BAR ───────────────────────────────────────────────── */
.ue-trust-bar {
  background: var(--ec-dark);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
}
.ue-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
}
.ue-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.ue-trust-icon {
  width: 16px;
  height: 16px;
  background: var(--ec-gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── CTA ─────────────────────────────────────────────────────── */
.ue-cta {
  background: var(--ec-dark);
  padding: 80px 24px;
  text-align: center;
}
.ue-cta-inner { max-width: 640px; margin: 0 auto; }
.ue-cta h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--ec-white);
  line-height: 1.2;
  margin: .5rem 0 1rem;
}
.ue-cta h2 em { font-style: normal; color: var(--ec-gold); }
.ue-cta p {
  color: var(--ec-text);
  font-size: .97rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.ue-cta a[href^="tel"] { color: var(--ec-gold); text-decoration: none; }
.ue-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.ue-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ec-gold);
  color: var(--ec-dark);
  font-size: .875rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--ec-radius);
  text-decoration: none;
  transition: background var(--ec-trans), transform var(--ec-trans);
}
.ue-btn-primary:hover { background: #d9ae00; transform: translateY(-1px); }
.ue-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ec-white);
  font-size: .875rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--ec-radius);
  border: 1px solid rgba(255,255,255,.25);
  text-decoration: none;
  transition: border-color var(--ec-trans), color var(--ec-trans);
}
.ue-btn-secondary:hover { border-color: var(--ec-gold); color: var(--ec-gold); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ue-merkmale-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .ue-inhaber-inner { grid-template-columns: 1fr; gap: 36px; }
  .ue-inhaber-card { position: static; }
  .ue-merkmale-grid { grid-template-columns: 1fr; }
  .ue-ls-grid { grid-template-columns: 1fr; }
  .ue-ls-item { border-right: none !important; }
  .ue-ls-item:nth-last-child(-n+2) { border-bottom: 1px solid #f0f0f0; }
  .ue-ls-item:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .ue-cta-btns { flex-direction: column; align-items: stretch; }
  .ue-btn-primary, .ue-btn-secondary { justify-content: center; }
  .ue-fact { grid-template-columns: 1fr; gap: 2px; }
}

/* ============================================================
   FOOTER – energietec connect GmbH
   ============================================================ */

.ec-footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .88rem;
}

/* ── MAIN GRID ───────────────────────────────────────────────── */
.ec-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* ── BRAND COL ───────────────────────────────────────────────── */
.ec-footer-logo img {
  display: block;
  height: 36px;
  width: auto;
  margin-bottom: 1.2rem;
}
.ec-footer-desc {
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  margin: 0 0 1.5rem;
  font-size: .85rem;
  max-width: 280px;
}

/* ── SOCIAL ──────────────────────────────────────────────────── */
.ec-footer-social {
  display: flex;
  gap: 10px;
}
.ec-footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.ec-footer-social-link .fa {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  transition: color .2s ease;
}
.ec-footer-social-link:hover {
  background: rgba(241,194,6,.12);
  border-color: rgba(241,194,6,.4);
}
.ec-footer-social-link:hover .fa {
  color: #F1C206;
}

/* ── COLUMN TITLES ───────────────────────────────────────────── */
.ec-footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F1C206;
  margin: 0 0 1.2rem;
}

/* ── NAV LINKS ───────────────────────────────────────────────── */
.ec-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ec-footer-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .86rem;
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.ec-footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: rgba(241,194,6,.4);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .2s ease;
}
.ec-footer-links a:hover { color: rgba(255,255,255,.9); }
.ec-footer-links a:hover::before { background: #F1C206; }

/* ── CONTACT LIST ────────────────────────────────────────────── */
.ec-footer-contact {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ec-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ec-footer-contact-icon {
  width: 28px;
  height: 28px;
  background: rgba(241,194,6,.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ec-footer-contact-icon .fa {
  font-size: 13px;
  color: #F1C206;
}
.ec-footer-contact a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .86rem;
  line-height: 1.6;
  transition: color .2s ease;
}
.ec-footer-contact a:hover { color: #F1C206; }
.ec-footer-contact span {
  color: rgba(255,255,255,.55);
  font-size: .86rem;
  line-height: 1.6;
}

/* CTA button */
.ec-footer-cta {
  display: inline-block;
  background: #F1C206;
  color: #111;
  font-size: .82rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s ease;
}
.ec-footer-cta:hover { background: #d9ae00; }

/* ── BOTTOM BAR ──────────────────────────────────────────────── */
.ec-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
}
.ec-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ec-footer-copy {
  color: rgba(255,255,255,.3);
  font-size: .8rem;
  margin: 0;
}
.ec-footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.ec-footer-legal a {
  color: rgba(255,255,255,.3);
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s ease;
}
.ec-footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ec-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .ec-footer-col--brand {
    grid-column: 1 / -1;
  }
  .ec-footer-desc { max-width: 100%; }
}

@media (max-width: 600px) {
  .ec-footer-inner {
    grid-template-columns: 1fr;
    padding: 44px 20px 36px;
    gap: 32px;
  }
  .ec-footer-col--brand { grid-column: auto; }

  /* Sve levo na mobilnom */
  .ec-footer-col-title { text-align: left; }
  .ec-footer-links { align-items: flex-start; }
  .ec-footer-links a { justify-content: flex-start; }
  .ec-footer-contact { align-items: flex-start; }

  .ec-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .ec-footer-legal { justify-content: flex-start; }
}