/* ===========================================
   SOLVENA — rezidenční development jako investice
   terakota hero + teplý písek (světlé tělo) · Manrope
   (pozn.: proměnné --navy/--gold zachovány kvůli rozsahu;
    --navy = deep terakota, --gold = terakota, --emerald = oker)
   =========================================== */

:root {
  --navy:     #134a2c;   /* deep zelená — footer akcent blok */
  --navy-2:   #1b6640;
  --navy-3:   #0e3a22;
  --navy-soft:#2e9e5b;
  --gold:     #2e9e5b;   /* svěží ESG zelená — primární akcent */
  --gold-2:   #57c489;   /* světlá zelená */
  --gold-3:   #1b7a45;   /* tmavá zelená — text na světlém */
  --emerald:  #7cc49a;   /* mátová — detail */
  --emerald-2:#a9dcc0;
  --ink:      #16261d;   /* tmavý zelenavý text */
  --body:     #43564b;
  --mute:     #6e8278;
  --soft:     #9db0a5;
  --cream:    #eef6f0;   /* světle mátová */
  --ivory:    #e6f1ea;
  --line:     #d5e6dc;
  --line-d:   rgba(255,255,255,.14);
  --max:      1180px;
  --ease:     cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: all .2s var(--ease); }
em { font-style: normal; }
.serif { font-family: 'Manrope', sans-serif; font-optical-sizing: auto; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.gold-t { color: var(--gold-3); }
.em-t { color: var(--emerald); }

/* ---- KICKER / HEADINGS ---- */
.kicker {
  display: inline-flex; align-items: center;
  font-size: .74rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-3); margin-bottom: 1rem;
}
.kicker--light { color: var(--gold-2); }
.h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800;
  line-height: 1.14; letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 1.1rem;
}
.h2 em { font-family: 'Manrope', sans-serif; font-weight: 500; color: var(--gold-3); }
.lead { font-size: 1.08rem; color: var(--body); max-width: 60ch; }
.lead strong { color: var(--ink); font-weight: 700; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem; font-weight: 700; font-size: .95rem;
  padding: 0.9rem 1.6rem; border-radius: 10px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .25s var(--ease);
  letter-spacing: 0.01em;
}
.btn--sm { padding: 0.62rem 1.15rem; font-size: .85rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-3));
  color: #ffffff; border-color: var(--gold);
  box-shadow: 0 10px 28px -12px rgba(46,158,91,.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(46,158,91,.7); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-2); transform: translateY(-2px); }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: transparent; transition: all .3s var(--ease); padding: 1.1rem 0;
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 6px 26px -14px rgba(36,50,64,.28);
  padding: 0.65rem 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
/* výchozí stav (nad barevným hero) = světlý text */
.nav__logo { display: flex; align-items: center; gap: .55rem; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 1.5rem; letter-spacing: -.01em; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.3); }
.logo-mark { width: 1.15em; height: 1.15em; flex-shrink: 0; display: block; }
.nav__logo b { font-weight: 600; }
.nav__logo i { color: var(--gold-2); font-style: normal; }
.nav__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; margin-left: 3px; transform: translateY(-2px); }
.nav__links { display: flex; gap: 1.7rem; font-size: .92rem; font-weight: 600; }
.nav__links a { color: rgba(255,255,255,.86); padding: .3rem 0; position: relative; text-shadow: 0 1px 8px rgba(0,0,0,.25); }
.nav__links a:hover { color: #fff; }
.nav__links a::after { content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--gold); transition:width .25s var(--ease); }
.nav__links a:hover::after { width:100%; }
.nav__cta { display: flex; align-items: center; gap: .9rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s var(--ease); }
.nav .btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-3)); color: #fff; border-color: var(--gold); box-shadow: 0 8px 20px -10px rgba(19,74,44,.5); }
.nav .btn--gold:hover { filter: brightness(1.05); }
/* po odscrollování (nad světlými sekcemi) = tmavý text */
.nav.scrolled .nav__logo { color: var(--ink); text-shadow: none; }
.nav.scrolled .nav__logo i { color: var(--gold-3); }
.nav.scrolled .nav__links a { color: rgba(36,50,64,.78); text-shadow: none; }
.nav.scrolled .nav__links a:hover { color: var(--gold-3); }
.nav.scrolled .nav__burger span { background: var(--ink); }
.nav.scrolled .btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-3)); color: #fff; border-color: var(--gold); }

/* ---- HERO (světlé pozadí + tmavý text, terakota jen akcent) ---- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  margin-top: -72px; padding: 10rem 0 8rem;
  min-height: 92vh; display: flex; align-items: center;
  background:
    linear-gradient(to bottom, rgba(8,28,18,.72) 0%, rgba(8,28,18,.30) 30%, rgba(8,28,18,.42) 62%, rgba(8,28,18,.86) 100%),
    url('assets/photos/hero_bg.jpg') center 42%/cover no-repeat;
  background-color: #0b241a;
}
/* plovoucí dekorace okolo hero (jemné tématické ikony energetiky) */
.hero__decor { display: none; }
.hero__decor--dead { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__decor span {
  position: absolute; color: var(--gold); display: block;
  animation: floaty 7s ease-in-out infinite;
}
.hero__decor span svg { width: 100%; height: 100%; }
.hero__decor .hd1 { top: 17%;  left: 7%;   width: 64px; height: 64px; opacity: .16; }
.hero__decor .hd2 { top: 25%;  right: 9%;  width: 84px; height: 84px; opacity: .13; animation-delay: 1.2s; }
.hero__decor .hd3 { bottom: 31%; left: 12%; width: 54px; height: 54px; opacity: .14; animation-delay: 2.4s; }
.hero__decor .hd4 { top: 52%;  right: 13%; width: 58px; height: 58px; opacity: .12; animation-delay: .6s; }
.hero__decor .hd5 { top: 10%;  left: 43%;  width: 40px; height: 40px; opacity: .10; animation-delay: 1.8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero__inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; text-align: center; width: 100%; }
.hero__skyline { display: none; }
.hero__tagline {
  display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1.7rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.9); text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.hero__tagline .hero__mark { color: var(--gold-2); }
.hero__mark { width: 22px; height: 22px; flex-shrink: 0; display: block; }
.hero__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 5.4vw, 4rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.028em; color: #fff; max-width: 20ch; margin: 0 auto;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero__title em { font-family: 'Manrope', sans-serif; font-weight: 600; font-style: normal; color: #ffd98a; }
.hero__sub {
  max-width: 56ch; margin: 1.6rem auto 2.4rem; font-size: 1.12rem;
  color: rgba(255,255,255,.92); font-weight: 450; text-shadow: 0 1px 18px rgba(0,0,0,.4);
}
.hero__sub strong { color: #fff; font-weight: 700; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero .btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-3)); color: #fff; border-color: var(--gold); box-shadow: 0 12px 30px -14px rgba(19,74,44,.5); }
.hero .btn--gold:hover { filter: brightness(1.05); transform: translateY(-2px); }
.hero .btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(2px); }
.hero .btn--ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; color: #fff; }
.hero__trust { display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; justify-content: center; }
.hero__trust .ht { display: flex; flex-direction: column; gap: .15rem; }
.hero__trust .ht b { font-size: 1.5rem; font-weight: 800; color: #fff; font-family: 'Manrope', sans-serif; text-shadow: 0 1px 14px rgba(0,0,0,.35); }
.hero__trust .ht span { font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 500; }
.hero__trust .ht-div { width: 1px; background: rgba(255,255,255,.28); }

/* ---- SECTION ---- */
.section { padding: 6rem 0; }
.section--tight { padding: 4.5rem 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--ivory); color: var(--ink); }
.section--navy .h2 { color: var(--ink); }
.section--navy .h2 em { color: var(--gold-3); }
.section--navy .lead { color: var(--body); }
.section--navy .lead strong { color: var(--ink); }
.section--navy .kicker--light { color: var(--gold-3); }
.section__head { max-width: 720px; margin-bottom: 3rem; }
.section__head--center { margin: 0 auto 3.4rem; text-align: center; }
.section__head--center .kicker { justify-content: center; }

/* ---- PROČ / WHY GRID ---- */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.6rem; }
.why__item {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.9rem 1.7rem;
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.why__item:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -28px rgba(28,28,30,.45); border-color: rgba(46,158,91,.4); }
.why__item h3 { font-size: 1.12rem; color: var(--ink); margin-bottom: .5rem; font-weight: 700; }
.why__item p { font-size: .96rem; color: var(--mute); }

/* ---- MODEL / STEPS ---- */
.model__diagram {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1rem;
  counter-reset: step;
}
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 1.9rem 1.6rem; transition: all .3s var(--ease);
}
.step:hover { border-color: rgba(46,158,91,.45); box-shadow: 0 18px 44px -26px rgba(28,28,30,.4); transform: translateY(-3px); }
.step__ic, .why__ic { display: inline-block; color: var(--gold-3); margin-bottom: 1.1rem; }
.step__ic svg, .why__ic svg { width: 48px; height: 48px; }
.safe__ic { display: inline-block; color: var(--gold-3); flex-shrink: 0; }
.safe__ic svg { width: 46px; height: 46px; }
.step h3 { font-size: 1.08rem; color: var(--ink); font-weight: 700; margin-bottom: .5rem; }
.step p { font-size: .94rem; color: var(--mute); }
.step__arrow { position: absolute; right: -.85rem; top: 50%; transform: translateY(-50%); z-index: 2; color: var(--gold); background: var(--cream); border-radius: 50%; display:flex; }
.step__arrow svg { width: 20px; height: 20px; }

.model__note {
  display: flex; gap: 1rem; align-items: flex-start; margin-top: 2.2rem;
  background: linear-gradient(135deg, rgba(46,158,91,.08), rgba(46,158,91,.02));
  border: 1px solid rgba(46,158,91,.25); border-radius: 14px; padding: 1.3rem 1.5rem;
}
.model__note .mn-ic { color: var(--emerald); flex-shrink: 0; margin-top: 2px; }
.model__note p { font-size: .98rem; color: var(--body); }
.model__note strong { color: var(--ink); }

/* ---- ZAJIŠTĚNÍ / SAFETY ---- */
.safe__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.safe__card {
  display: flex; gap: 1.1rem; padding: 1.7rem; border-radius: 16px;
  background: #fff; border: 1px solid var(--line); transition: all .3s var(--ease);
  box-shadow: 0 18px 44px -34px rgba(36,50,64,.4);
}
.safe__card:hover { transform: translateY(-3px); border-color: rgba(46,158,91,.45); box-shadow: 0 26px 56px -34px rgba(36,50,64,.45); }
.safe__card h3 { font-size: 1.1rem; color: var(--ink); font-weight: 700; margin-bottom: .4rem; }
.safe__card p { font-size: .95rem; color: var(--mute); }

/* ---- OPATŘENÍ / MEASURES ---- */
.measures { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.measure {
  position: relative; border-radius: 18px; overflow: hidden; min-height: 320px;
  display: flex; align-items: flex-end; isolation: isolate;
}
.measure--wide { grid-column: span 2; min-height: 280px; }
.measure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.measure::after { content:''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,20,22,0) 30%, rgba(20,20,22,.55) 62%, rgba(20,20,22,.93) 100%); }
.measure:hover img { transform: scale(1.05); }
.measure__body { padding: 1.8rem; color: #fff; }
.measure__tag { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); margin-bottom: .55rem; }
.measure__body h3 { font-size: 1.32rem; font-weight: 700; margin-bottom: .35rem; }
.measure__body p { font-size: .96rem; color: rgba(235,242,250,.82); max-width: 46ch; }
.measure__pay { position: absolute; top: 1.3rem; right: 1.3rem; background: rgba(46,158,91,.92); color: #fff; font-size: .78rem; font-weight: 700; padding: .35rem .8rem; border-radius: 100px; backdrop-filter: blur(4px); }
.measure__loc { display: inline-flex; align-items: center; gap: .38rem; font-size: .86rem; font-weight: 600; color: rgba(235,242,250,.9); margin-bottom: .5rem; }
.measure__loc svg { width: 15px; height: 15px; color: var(--gold-2); flex-shrink: 0; }

/* --- Development sekce (hlavní pilíř) --- */
.devshow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.6rem; }
.devcard { position: relative; border-radius: 18px; overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; }
.devcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.devcard::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(18,40,26,0) 35%, rgba(18,40,26,.5) 62%, rgba(12,32,20,.92) 100%); }
.devcard:hover img { transform: scale(1.05); }
.devcard__body { padding: 1.9rem; color: #fff; }
.devcard__tag { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); margin-bottom: .5rem; }
.devcard__body h3 { font-size: 1.45rem; font-weight: 700; margin-bottom: .4rem; }
.devcard__body p { font-size: .98rem; color: rgba(235,242,250,.86); max-width: 44ch; }
.devflow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 1.4rem; }
.devstep { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem 1.4rem; }
.devstep__ic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: rgba(46,158,91,.12); color: var(--gold-3); margin-bottom: .9rem; }
.devstep__ic svg { width: 24px; height: 24px; }
.devstep h4 { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: .35rem; }
.devstep p { font-size: .9rem; color: var(--mute); line-height: 1.5; }
@media (max-width: 820px) { .devshow { grid-template-columns: 1fr; } .devflow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .devflow { grid-template-columns: 1fr; } }

/* ---- EMISE / OFFER ---- */
.offer { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: stretch; }
.offer__media { position: relative; border-radius: 20px; overflow: hidden; }
.offer__media img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.offer__badge { position: absolute; left: 1.4rem; bottom: 1.4rem; background: rgba(28,28,30,.86); backdrop-filter: blur(8px); border:1px solid rgba(46,158,91,.4); border-radius: 14px; padding: 1rem 1.3rem; color:#fff; }
.offer__badge b { font-family: 'Manrope', sans-serif; font-size: 1.9rem; color: var(--gold-2); display:block; line-height: 1; }
.offer__badge span { font-size: .82rem; color: rgba(235,242,250,.75); }

.tiers { display: flex; flex-direction: column; gap: 1rem; }
.tier {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.2rem;
  padding: 1.35rem 1.5rem; border: 1.5px solid var(--line); border-radius: 14px;
  background: #fff; transition: all .25s var(--ease); position: relative;
}
.tier:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: 0 16px 40px -26px rgba(28,28,30,.4); }
.tier--feat { border-color: var(--gold); background: linear-gradient(135deg, #fff, rgba(46,158,91,.05)); }
.tier__badge { position: absolute; top: -10px; left: 1.5rem; background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); color:#ffffff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .7rem; border-radius: 100px; }
.tier__nom { font-size: 1.12rem; font-weight: 800; color: var(--ink); white-space: nowrap; }
.tier__nom span { display:block; font-size: .76rem; font-weight: 500; color: var(--mute); }
.tier__bar { height: 6px; border-radius: 100px; background: var(--line); position: relative; overflow: hidden; }
.tier__bar i { position: absolute; left:0; top:0; bottom:0; border-radius: 100px; background: linear-gradient(90deg, var(--gold-3), var(--gold)); }
.tier__pct { text-align: right; }
.tier__pct b { font-family: 'Manrope', sans-serif; font-size: 1.7rem; color: var(--gold-3); font-weight: 600; line-height: 1; }
.tier__pct span { display:block; font-size: .74rem; color: var(--mute); font-weight: 600; }

.offer__meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.6rem; }
.ometa { text-align: center; padding: 1.1rem .6rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 10px 24px -20px rgba(19,74,44,.5); }
.ometa b { display:block; font-size: 1.15rem; color: var(--ink); font-weight: 800; }
.ometa span { font-size: .8rem; color: var(--mute); }

/* ---- IMPACT / STATS ---- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.5rem 1rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { font-family: 'Manrope', sans-serif; font-size: clamp(2.2rem,4vw,3rem); font-weight: 700; color: var(--gold-3); line-height: 1; display:block; }
.stat span { font-size: .9rem; color: var(--mute); margin-top: .5rem; display:block; }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; font-size: 1.08rem; font-weight: 700; color: var(--ink); font-family: inherit; }
.qa__q:hover { color: var(--gold-3); }
.qa__ic { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); display:flex; align-items:center; justify-content:center; transition: all .25s var(--ease); color: var(--gold-3); }
.qa.open .qa__ic { transform: rotate(45deg); border-color: var(--gold); background: var(--gold); color:#fff; }
.qa__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.qa__a p { padding: 0 0 1.5rem; color: var(--mute); font-size: 1rem; max-width: 70ch; }

/* ---- CTA / KONTAKT ---- */
.cta {
  position: relative; border-radius: 24px; overflow: hidden; color: #fff;
  padding: 4rem 3rem; text-align: center;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 55%, var(--gold-3) 100%);
  border: 1px solid rgba(46,158,91,.3);
}
.cta::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(249,215,126,.30), transparent 60%); }
.cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta h2 { font-family: 'Manrope', sans-serif; font-size: clamp(1.8rem,3.6vw,2.7rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 1rem; }
.cta h2 em { font-family:'Manrope', sans-serif; font-weight: 600; color: #fff7e2; }
.cta p { color: rgba(255,255,255,.92); margin-bottom: 2rem; font-size: 1.08rem; }
.cta__row { display:flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta__contact { margin-top: 2.6rem; padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,.18); display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta__ct { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; color: #fff; }
.cta__ct-ic { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.32); display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease); }
.cta__ct-ic svg { width: 22px; height: 22px; }
.cta__ct-lb { font-size: .68rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; color: rgba(255,255,255,.72); }
.cta__ct-v { font-size: .95rem; font-weight: 700; color: #fff; word-break: break-word; }
a.cta__ct:hover .cta__ct-ic { background: rgba(255,255,255,.28); }
a.cta__ct:hover .cta__ct-v { text-decoration: underline; }
.cta .btn--gold { background: #fff; color: var(--gold-3); border-color: #fff; box-shadow: 0 12px 30px -14px rgba(36,50,64,.4); }
.cta .btn--gold:hover { background: #fff7e2; }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.cta .btn--ghost:hover { border-color: #fff; color: #fff; }

/* ---- FOOTER ---- */
.footer { background: var(--navy-3); color: rgba(235,242,250,.6); padding: 3.5rem 0 2rem; font-size: .9rem; }
.footer__top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__logo { display: flex; align-items: center; gap: .5rem; font-family:'Manrope', sans-serif; font-size: 1.6rem; color:#fff; margin-bottom: .7rem; }
.footer__logo i { color: var(--gold-2); font-style: normal; }
.footer__col h4 { color:#fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; }
.footer__col a { display:block; color: rgba(235,242,250,.6); padding: .25rem 0; }
.footer__col a:hover { color: var(--gold-2); }
.footer__cols { display:flex; gap: 4rem; flex-wrap: wrap; }
.footer__disc { padding-top: 1.6rem; font-size: .78rem; line-height: 1.7; color: rgba(235,242,250,.42); max-width: 95ch; }
.footer__bottom { margin-top: 1.4rem; display:flex; justify-content: space-between; gap:1rem; flex-wrap: wrap; color: rgba(235,242,250,.4); font-size: .82rem; }

/* ---- SROVNÁNÍ / COMPARE ---- */
.compare { max-width: 940px; margin: 0 auto; }
.compare__row { display: grid; grid-template-columns: 1fr 1.25fr 1.25fr; }
.compare__row + .compare__row .compare__dim,
.compare__row + .compare__row .compare__cell { border-top: 1px solid var(--line); }
.compare__row--head { margin-bottom: 0; }
.compare__col { font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; padding: 1rem 1.3rem; display: flex; align-items: center; gap: .45rem; }
.compare__col--plain { color: var(--mute); }
.compare__col--renovo { background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-3)); color: #ffffff; border-radius: 14px 14px 0 0; box-shadow: 0 -2px 0 var(--gold); }
.compare__col--renovo svg { width: 15px; height: 15px; }
.compare__dim { display: flex; align-items: center; font-weight: 700; color: var(--ink); font-size: .98rem; padding: 1.15rem 1.2rem 1.15rem 0; }
.compare__cell { display: flex; align-items: center; gap: .65rem; padding: 1.15rem 1.3rem; font-size: .96rem; }
.compare__cell--plain { color: var(--mute); }
.compare__cell--renovo { background: var(--navy); color: #fff; }
.compare__row:last-child .compare__cell--renovo { border-radius: 0 0 14px 14px; }
.compare .ci { width: 19px; height: 19px; flex-shrink: 0; }
.compare__cell--plain .ci { color: #c66a45; }
.compare__cell--renovo .ci { color: var(--emerald-2); }
.compare__mlabel { display: none; }
.compare__foot { text-align: center; margin-top: 2.2rem; }
.compare__foot p { font-size: 1.06rem; color: var(--body); max-width: 60ch; margin: 0 auto 1.4rem; }
.compare__foot strong { color: var(--ink); }

/* ---- TŘI PILÍŘE ---- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2.8rem; }
.pillar {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 2.1rem 1.8rem 1.9rem; transition: all .3s var(--ease); overflow: hidden;
  display: flex; flex-direction: column;
}
.pillar:hover { transform: translateY(-5px); box-shadow: 0 26px 56px -30px rgba(19,74,44,.5); border-color: rgba(46,158,91,.4); }
.pillar--feat { border-color: var(--gold); box-shadow: 0 18px 44px -28px rgba(46,158,91,.6); }
.pillar__num {
  position: absolute; top: 1.3rem; right: 1.6rem; font-family: 'Manrope', sans-serif;
  font-size: 2.4rem; font-weight: 800; color: rgba(46,158,91,.12); line-height: 1;
}
.pillar__ic { display: inline-flex; color: var(--gold-3); margin-bottom: 1rem; }
.pillar__ic svg { width: 46px; height: 46px; }
.pillar h3 { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: .55rem; letter-spacing: -.01em; }
.pillar h3 span { font-weight: 600; color: var(--gold-3); font-size: .96rem; display: block; margin-top: .15rem; }
.pillar > p { font-size: .98rem; color: var(--body); line-height: 1.55; margin-bottom: 1.1rem; }
.pillar__pts { list-style: none; border-top: 1px solid var(--line); padding-top: 1rem; margin-top: auto; }
.pillar__pts li { position: relative; padding-left: 1.5rem; font-size: .9rem; color: var(--mute); font-weight: 600; }
.pillar__pts li + li { margin-top: .5rem; }
.pillar__pts li::before {
  content: ''; position: absolute; left: 0; top: .35rem; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold);
}

/* ---- TÝM ---- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.6rem; }
.team__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: all .3s var(--ease); }
.team__card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -30px rgba(19,74,44,.5); border-color: rgba(46,158,91,.4); }
.team__card img { width: 100%; height: auto; display: block; }
.team__ph { width: 100%; aspect-ratio: 1 / 1; background: linear-gradient(180deg, #eef0f3, #ced2d8); display: flex; align-items: center; justify-content: center; }
.team__ph span { width: 108px; height: 108px; border-radius: 50%; background: rgba(46,158,91,.13); color: var(--gold-3); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-size: 2.3rem; font-weight: 800; letter-spacing: .02em; }
.team__body { padding: 1.2rem 1.25rem 1.45rem; }
.team__exp { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-3); background: rgba(46,158,91,.12); padding: .25rem .6rem; border-radius: 100px; margin-bottom: .7rem; }
.team__body h3 { font-size: 1.08rem; font-weight: 800; color: var(--ink); margin-bottom: .15rem; line-height: 1.25; }
.team__role { display: block; font-size: .82rem; font-weight: 700; color: var(--gold-3); margin-bottom: .6rem; }
.team__body p { font-size: .88rem; color: var(--mute); line-height: 1.5; }

/* Founder feature */
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; margin-top: 2.6rem; box-shadow: 0 30px 60px -40px rgba(19,74,44,.6); }
.founder__media { position: relative; }
.founder__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder__body { padding: 2rem 2.2rem; align-self: center; }
.founder__body h3 { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: .15rem; line-height: 1.2; }
.founder__body .team__role { font-size: .9rem; margin-bottom: .8rem; }
.founder__body p { font-size: .95rem; color: var(--mute); line-height: 1.6; max-width: 56ch; }
.founder__meta { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.founder__meta div { display: flex; flex-direction: column; padding-left: .85rem; border-left: 3px solid rgba(46,158,91,.5); }
.founder__meta b { font-size: 1rem; font-weight: 800; color: var(--ink); line-height: 1.25; }
.founder__meta span { font-size: .78rem; color: var(--mute); margin-top: .15rem; }

/* Partners */
.partners__lead { text-align: center; color: var(--body); font-size: 1rem; margin: 2.6rem 0 1.4rem; }
.partners__lead strong { color: var(--ink); font-weight: 800; }
.partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.partner { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: all .3s var(--ease); }
.partner:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -30px rgba(19,74,44,.5); border-color: rgba(46,158,91,.4); }
.partner__media { height: 130px; overflow: hidden; }
.partner__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.partner__body { padding: 1.1rem 1.2rem 1.35rem; }
.partner__body h4 { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: .4rem; line-height: 1.25; }
.partner__body p { font-size: .84rem; color: var(--mute); line-height: 1.5; }
@media (max-width: 820px) {
  .founder { grid-template-columns: 1fr; }
  .founder__media { height: 260px; }
  .partners { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .partners { grid-template-columns: 1fr; }
}

/* ---- MEDIA PLACEHOLDERY (gradient + ikona) ---- */
.measure__ph {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(150deg, var(--gold-2) 0%, var(--gold) 48%, var(--gold-3) 100%);
  display: flex; align-items: center; justify-content: center;
}
.measure__ph svg { width: 46%; max-width: 150px; height: auto; color: rgba(255,255,255,.32); }
.measure--battery .measure__ph { background: linear-gradient(150deg, #4fb37e 0%, #2e9e5b 50%, #134a2c 100%); }
.measure--reno .measure__ph { background: linear-gradient(150deg, #7cc49a 0%, #54bd81 50%, #1b7a45 100%); }
.measure--grid .measure__ph { background: linear-gradient(150deg, #5e8a73 0%, #3d6650 50%, #143d28 100%); }
.offer__media--ph { background: linear-gradient(150deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%); min-height: 480px; display: flex; align-items: center; justify-content: center; }
.offer__ph { text-align: center; color: #fff; padding: 2rem; }
.offer__ph-ic { display: inline-flex; margin-bottom: 1rem; }
.offer__ph-ic svg { width: 64px; height: 64px; color: rgba(255,255,255,.6); }
.offer__ph b { display: block; font-family: 'Manrope', sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1.1; }
.offer__ph > span { font-size: 1rem; color: rgba(255,255,255,.8); font-weight: 600; }

/* ---- KALKULAČKA ---- */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 940px; margin: 2.6rem auto 0; align-items: stretch; }
.calc__controls { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 2rem; display: flex; flex-direction: column; gap: 1.7rem; }
.calc__lab { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .9rem; }
.calc__lab span { font-size: .92rem; font-weight: 700; color: var(--ink); }
.calc__lab b { font-family: 'Manrope', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--gold-3); }
.calc input[type=range] { width: 100%; -webkit-appearance: none; appearance: none; height: 7px; border-radius: 100px; background: var(--line); outline: none; cursor: pointer; }
.calc input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 3px 10px -2px rgba(19,74,44,.5); cursor: pointer; }
.calc input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 3px 10px -2px rgba(19,74,44,.5); cursor: pointer; }
.calc__minmax { display: flex; justify-content: space-between; font-size: .74rem; color: var(--mute); margin-top: .55rem; }
.calc__years { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.calc__years button { padding: .72rem 0; border: 1.5px solid var(--line); background: #fff; border-radius: 10px; font-weight: 700; font-size: .9rem; color: var(--body); cursor: pointer; transition: all .2s var(--ease); font-family: inherit; }
.calc__years button:hover { border-color: var(--gold-2); }
.calc__years button.is-active { background: var(--gold); border-color: var(--gold); color: #fff; }
.calc__rate { display: flex; justify-content: space-between; align-items: center; background: var(--cream); border-radius: 12px; padding: 1rem 1.2rem; }
.calc__rate span { font-weight: 600; color: var(--body); font-size: .95rem; }
.calc__rate b { font-size: 1.25rem; color: var(--gold-3); font-family: 'Manrope', sans-serif; font-weight: 800; }
.calc__result { background: linear-gradient(155deg, var(--navy-2), var(--navy-3)); color: #fff; border-radius: 18px; padding: 2rem; display: flex; flex-direction: column; gap: 1.3rem; }
.calc__big { text-align: center; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(255,255,255,.16); }
.calc__big span { display: block; font-size: .92rem; color: rgba(255,255,255,.72); margin-bottom: .45rem; }
.calc__big b { font-family: 'Manrope', sans-serif; font-size: 2.7rem; font-weight: 800; color: #fff; line-height: 1; }
.calc__rows { display: flex; flex-direction: column; gap: .85rem; }
.calc__row { display: flex; justify-content: space-between; font-size: .95rem; }
.calc__row span { color: rgba(255,255,255,.8); }
.calc__row b { color: #fff; font-weight: 700; }
.calc__row--sum { border-top: 1px solid rgba(255,255,255,.16); padding-top: .95rem; margin-top: .15rem; font-size: 1.1rem; }
.calc__row--sum b { color: var(--gold-2); font-family: 'Manrope', sans-serif; }
.calc__disc { text-align: center; font-size: .8rem; color: var(--mute); max-width: 64ch; margin: 1.5rem auto 0; line-height: 1.5; }

/* --- Fotky v kartách pilířů --- */
.pillar__media { margin: -2.1rem -1.8rem 0; height: 148px; overflow: hidden; }
.pillar__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--ease); }
.pillar:hover .pillar__media img { transform: scale(1.06); }
.pillar__num { display: none; }
.pillar__ic {
  position: relative; z-index: 2; margin: -30px 0 1rem;
  width: 58px; height: 58px; border-radius: 15px; background: #fff;
  align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -10px rgba(19,74,44,.45); border: 1px solid var(--line);
}
.pillar__ic svg { width: 30px; height: 30px; }

/* --- Fotky v krocích "Jak to funguje" --- */
.step__media { margin: -1.9rem -1.6rem 0; height: 120px; overflow: hidden; border-radius: 15px 15px 0 0; }
.step__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--ease); }
.step:hover .step__media img { transform: scale(1.06); }
.step .step__ic { position: relative; z-index: 2; margin: -28px 0 .8rem; width: 52px; height: 52px; border-radius: 14px; background: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -10px rgba(19,74,44,.45); border: 1px solid var(--line); }
.step .step__ic svg { width: 28px; height: 28px; margin: 0; }

/* --- Graf výnosu v kalkulačce --- */
.calc__chart { margin: .2rem 0 .1rem; }
.calc__chart svg { width: 100%; height: 76px; display: block; overflow: visible; }
#calcArea, #calcLine { transition: d .5s var(--ease); }
.calc__chart-x { display: flex; justify-content: space-between; margin-top: .35rem; font-size: .68rem; color: rgba(255,255,255,.55); font-weight: 600; }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 920px) {
  .why__grid, .model__diagram, .stats { grid-template-columns: repeat(2,1fr); }
  .team { grid-template-columns: repeat(2,1fr); }
  .pillars { grid-template-columns: repeat(2,1fr); }
  .offer { grid-template-columns: 1fr; gap: 2rem; }
  .offer__media img, .offer__media--ph { min-height: 320px; }
  .step__arrow { display: none; }
  .safe__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--navy-2);
    padding: 1rem 28px 1.4rem; box-shadow: 0 20px 40px -20px rgba(0,0,0,.6);
  }
  .nav__links.open a { padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero { padding: 8rem 0 5rem; min-height: 88vh; }
  .hero__title { font-size: clamp(1.55rem, 7.2vw, 2.4rem); max-width: none; }
  .hero__tagline { font-size: .66rem; letter-spacing: .08em; gap: .5rem; flex-wrap: wrap; justify-content: center; max-width: 100%; }
  .hero__tagline .hero__rule { display: none; }
  .hero__skyline { height: 100px; }
  .hero__title br { display: none; }
  .hero__sub { font-size: 1.02rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__trust { gap: 1.3rem; }
  .hero__trust .ht-div { display: none; }
  .section { padding: 4rem 0; }
  .why__grid, .measures, .stats { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .model__diagram { grid-template-columns: 1fr; }
  .measure--wide { grid-column: span 1; }
  .offer__meta { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line-d); padding-bottom: 1.2rem; }
  .tier { grid-template-columns: 1fr auto; }
  .tier__bar { display: none; }
  .cta { padding: 3rem 1.6rem; }
  /* compare → stack */
  .compare__row--head { display: none; }
  .compare__row { grid-template-columns: 1fr; gap: 0; padding: 1.2rem 0; }
  .compare__row + .compare__row { border-top: 1px solid var(--line); }
  .compare__row + .compare__row .compare__dim,
  .compare__row + .compare__row .compare__cell { border-top: 0; }
  .compare__dim { padding: 0 0 .7rem; }
  .compare__cell { padding: .5rem 0; border-radius: 10px; margin-bottom: .4rem; }
  .compare__cell--renovo { padding: .7rem .9rem; }
  .compare__cell--plain { padding: .2rem 0 .5rem; }
  .compare__mlabel { display: inline; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; opacity: .65; margin-right: .35rem; }
}
