:root{
  --text:#0e1a2a;
  --muted:#5a6b7f;
  --card:#ffffff;
  --accent:#28d2be;
  --accent2:#1fb9a8;
  --shadow: 0 12px 35px rgba(0,0,0,.12);
  --radius2: 26px; /* nechávám, ale níže ho „vypneme“ pro všechno krom btn */
  --container: 1100px;
}

*{box-sizing:border-box}
html{ scroll-behavior:smooth; }

body{
  margin:0;
  padding-top:78px;                 /* výška fixed headeru */
  background:#ffffff;              /* okraje kolem „papíru“ */
  color:var(--text);
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:16px;
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

/* TYPOGRAFIE */
h1{font-size:44px; line-height:1.1; font-weight:900; margin:0 0 16px}
h2{font-size:32px; line-height:1.25; font-weight:800; margin:0 0 14px}
h3{font-size:22px; line-height:1.3; font-weight:700; margin:0 0 10px}
h4{font-size:16px; line-height:1.4; font-weight:700; margin:0 0 8px}
p{font-size:15px; line-height:1.6; margin:0 0 14px; color:var(--muted)}

.container{max-width:var(--container); margin:0 auto; padding:0 20px;}

/* PAPÍR jen pod obsahem (ne full-width) */
.page-bg{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px 160px;     /* dole rezerva, klidně 120–220px */
  background-color: #f6fffc;

  background-image: url("assets/img/pozadi.png");
  background-repeat: no-repeat;

  /* klíč: ukotvit doprava a ke spodku */
  background-position: right bottom;

  /* klíč: NE cover, ať se to nedeformuje */
  background-size: 1400px auto;

  border-radius: 18px;       /* volitelné, působí premium */
}
/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid transparent;
  background:var(--accent);
  color:#05222a;
  font-weight:800;
  box-shadow:0 10px 25px rgba(40,210,190,.25);
  transition:.2s;
  cursor:pointer;
  user-select:none;
}
.btn:hover{transform:translateY(-1px); background:var(--accent2)}
/* Header CTA – Kontaktujte nás */
.btn.outline{
  background: var(--accent); /* zelené pozadí */
  color: #fff;               /* bílý text */
  border: none;              /* zrušit outline */
  box-shadow: 0 10px 25px rgba(40,210,190,.25);
}

/* Header */
.header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid rgba(10,39,70,.08);
}

.nav{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;          /* stejné jako page-bg */
  height: 78px;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand{flex:0 0 auto}
.brand img{height:72px; width:auto}

.menu{
  display:flex; align-items:center; gap:18px;
  flex:1;
  justify-content:center;
  white-space:nowrap;
  font-weight:650;
  color:#15314f;
}
.menu a{padding:10px 10px}
.menu a:hover{ background:none }

.nav-right{
  display:flex;
  gap:10px;
  align-items:center;
  flex:0 0 auto;
  white-space:nowrap;
}
/* Header CTA – Kontaktujte nás (zelene pozadi, bily text) */
.nav-right a:last-child{
  background:#2ED3C6;
  color:#fff;
  border:none;

  padding:10px 22px;
  border-radius:999px;
  font-weight:700;
  line-height:1;

  transition:background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nav-right a:last-child:hover{
  background:#27c3b7; /* lehce tmavší */
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(5,34,42,.18);
}


.hamburger{
  display:none;
  width:44px; height:44px;
  border:1px solid rgba(10,39,70,.12);
  background:#fff;
  cursor:pointer;
}
.mobile{display:none; padding:0 0 14px}
.mobile.open{display:block}
.mobile a{
  display:block; padding:12px 12px;
  color:#15314f; font-weight:750;
}
.mobile a:hover{background:rgba(40,210,190,.12)}

/* Hero */
.hero{
  width:100%;
  margin:0 auto;
}

.hero .container{
  max-width:1200px;
  margin:0 auto;
}

.hero-grid{
  display:block;
}

.hero-main{
  position:relative;
  width:100%;
  aspect-ratio: 2.4 / 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.08)),
    url("assets/img/hero-bg.png") center / cover no-repeat;
}

.hero-content{
  position:absolute;
  inset:0;
  padding:24px 28px 20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.hero-title{
  font-size:46px;
  line-height:1.1;
  letter-spacing:-.02em;
  font-weight:950;
  margin:0;
  max-width:560px;
  color:#fff;
  text-shadow:0 2px 14px rgba(0,0,0,.45);
}

.hero-sub{
  margin:6px 0 0;
  color:rgba(255,255,255,.92);
  max-width:560px;
  font-weight:650;
  text-shadow:0 2px 14px rgba(0,0,0,.35);
}

.hero-bottom{
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  gap:14px;
}

.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
/* Sections */
.section{padding:58px 0}
.section-title{font-size:34px; letter-spacing:-.02em; margin:0 0 8px}
.section-sub{margin:0; color:var(--muted); font-weight:650; max-width:760px}

/* Split panels */
.split{display:grid; grid-template-columns:1fr 1fr; gap:22px; align-items:stretch}
.panel{
  background:var(--card);
  border:1px solid rgba(10,39,70,.08);
  padding:26px;
  box-shadow:0 10px 26px rgba(5,34,42,.06);
  min-height:220px;
}
.panel_soft{
  background:#E6FAF7;
  border-color: rgba(40,210,190,.30);
}
.panel h3{margin:0 0 10px; font-size:26px; font-weight:950}
.panel p{margin:0 0 16px; color:var(--muted); font-weight:650; line-height:1.55}

/* Services (OPRAVENO – bez rozbitých závorek) */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:22px;
}
.service{
  background: #55CFC0;          /* sytější jako ve vzoru */
  border: none;
  box-shadow: 0 12px 28px rgba(5,34,42,.18);

  padding:18px;
  display:flex;
  flex-direction:column;
  gap:18px;
  min-height:220px;
}
.service .icon{
  width:62px; height:62px;
  background:none;
  border:none;
}
.service .icon img{width:62px; height:62px; object-fit:contain}
.service h4{ font-size:22px; }

.service p{
  color:#0B2A3A;
  opacity:.85;
}

.service a{
  color:#0B2A3A;
  font-weight:700;
}

.service a:hover{
  opacity:1;
  gap:12px;
}
.service{
  transition: transform .25s ease, box-shadow .25s ease;
}
.service:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(5,34,42,.12);
}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  margin-top:22px;
  align-items:start;
}
.stat{
  background:linear-gradient(135deg, rgba(40,210,190,.14), rgba(255,255,255,.95));
  border:1px solid rgba(10,39,70,.08);
  padding:20px;
  box-shadow:0 10px 26px rgba(5,34,42,.05);
}
.stat .big{font-size:54px; font-weight:950; letter-spacing:-.03em; color:#0a5b63; line-height:1}
.stat p{margin:8px 0 0; color:var(--muted); font-weight:650; line-height:1.45}
.map{background:none; border:none; padding:0}
.map h4{margin:0 0 12px; font-size:16px; color:#16385a}
.map img{display:block; width:55%; height:auto; border:none}

/* Realizace */
.cards3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:22px;
}
.card{
  background:#fff;
  border:1px solid rgba(10,39,70,.08);
  overflow:hidden;
  box-shadow:0 10px 26px rgba(5,34,42,.05);
  display:flex; flex-direction:column;
}
.card .thumb{height:170px; background:#eaf7ff}
.card .thumb img{width:100%; height:100%; object-fit:cover}
.card .body{padding:16px 16px 18px}
.meta{font-size:13px; color:var(--muted); font-weight:750}
.card h4{margin:8px 0 10px; font-size:18px; font-weight:950}
.card p{margin:0 0 14px; color:var(--muted); font-weight:650; line-height:1.5}
.card .more{margin-top:auto; padding:0 16px 18px}
.card .more a{font-weight:950; color:#0a5b63}

/* Reviews */
.reviews{
  background:linear-gradient(135deg, rgba(40,210,190,.10), rgba(255,255,255,0));
  border-top:1px solid rgba(10,39,70,.06);
  border-bottom:1px solid rgba(10,39,70,.06);
}
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:22px;
}
.reviews-actions{
  margin: 10px 0 12px;
  display:flex;
  justify-content:center;
}
.review{
  background:#fff;
  border:1px solid rgba(10,39,70,.08);
  padding:18px;
  box-shadow:0 10px 26px rgba(5,34,42,.05);
  display:flex; flex-direction:column; gap:12px;
  min-height:210px;
}
.review p{margin:0; color:#2b3c52; font-weight:650; line-height:1.55}

.review-form-wrap{
  margin-top:26px;
  background:#fff;
  border:1px solid rgba(10,39,70,.08);
  padding:18px;
  box-shadow:0 10px 26px rgba(5,34,42,.05);
}
.review-form label{
  display:block;
  font-size:12px;
  letter-spacing:.06em;
  color:#2b3c52;
  font-weight:900;
  margin-top:12px;
}
.review-form input,
.review-form select,
.review-form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border:1px solid rgba(10,39,70,.14);
  background:#f7fbff;
  color:#0e1a2a;
  outline:none;
  font-weight:650;
}
.reviews-filter{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 10px;
}

.filter-btn{
  padding:8px 16px;
  border:none;
  background:#55CFC0;              /* stejná barva jako služby */
  color:#0B2A3A;
  font-size:14px;
  font-weight:700;
  cursor:pointer;

  box-shadow:0 6px 18px rgba(5,34,42,.10);
  transition:.2s;

  border-radius:999px !important;
}

.filter-btn:hover{
  background:#48bfb2;              /* lehce tmavší */
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(5,34,42,.18);
}

.filter-btn.active{
  background:#0f766e;              /* tmavší aktivní */
  color:#fff;
}

.reviews-count{
  margin:0 0 22px;
  font-size:14px;
  color:#5a6b7f;
  font-weight:600;
}

/* Contact */
.contact{
  padding:58px 0;
  color:#fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(40,210,190,.18), transparent 55%),
    linear-gradient(135deg, #041426, #082746);
}


.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
  margin-top:22px;
  align-items:start;
}

/* LEVÝ SLOUPEC = text + logo pod ním, zarovnané vlevo */
.contact-card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;   /* důležité: necentruje se při resize */
}
.contact-card{ position:relative; }

.contact-card::after{
  content:"";
  display:block;
  margin-top:32px;                 /* odsazení pod adresou */
  width:320px;                     /* velikost loga */
  height:90px;
  background:url("assets/img/logo-watermark.png") left center / contain no-repeat;
  opacity:.95;                     /* případně ztlum: 0.6 */
}


/* pokud máš logo jako <img> uvnitř contact-card */
.contact-card img{
  margin-top:32px;          /* odsazení pod kontaktem */
  align-self:flex-start;    /* zůstane vlevo, nebude poskakovat */
  max-width:320px;          /* aby nebylo přehnaně velké */
  height:auto;
}

/* pravý sloupec – formulář bez rámu */
.contact-form{
  background:none;
  border:none;
  padding:0;
  box-shadow:none;
}
/* =========================
   CONTACT – DROPDOWN
========================= */

.contact-form select{
  width:100%;
  margin-top:6px;
  padding:12px 0;
  background:transparent;
  border:none;
  border-bottom:1px solid rgba(255,255,255,.45);
  color:#fff;
  font-weight:650;
  outline:none;
}

.contact-form option{
  color:#0e1a2a;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.22);
  outline:none;
  color:#fff;
  font-weight:650;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: rgba(255,255,255,.55);
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(40,210,190,.75);
  box-shadow: 0 0 0 3px rgba(40,210,190,.18);
}

.contact-form textarea{
  min-height:140px;
  resize:vertical;
}

/* Footer */
.footer{
  padding:22px 0;
  background:#041425;
  color:rgba(255,255,255,.78);
  border-top:1px solid rgba(255,255,255,.10);
  font-weight:650;
}

/* =========================
   HRANATÝ DESIGN (krom tlačítek)
========================= */
*{ border-radius:0 !important; }
.btn{ border-radius:999px !important; }

/* ===== TABLET ===== */
@media (max-width:980px){
  .split{grid-template-columns:1fr}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr}
  .cards3{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .hero-title{font-size:40px}
}

/* ===== MOBIL ===== */
@media (max-width:720px){
  .menu{display:none}
  .map h4{font-size:20px;}
  .hamburger{display:inline-flex; align-items:center; justify-content:center}
  .hero .container{padding:28px 20px 26px}
  .hero-content{padding:22px}
  .hero-title{font-size:32px}
  .hero-bottom{flex-direction:column; align-items:flex-start}
  .services-grid{grid-template-columns:1fr}
  .cards3{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .brand img{height:72px}
  .btn{width:100%}
  .btn.outline{width:100%}

  .service-page .btn{
    width:auto;
  }
}
/* =========================
   CONTACT – CHECKBOXES
========================= */

.checks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:10px 0 0;
}

.check{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.check input{
  width:18px;
  height:18px;
  margin:0;
  accent-color: var(--accent);
}
.finance-bar{
  display:block;
  margin-top:8px;
  padding:8px 20px;
  background:#55CFC0;
  
  color:#0B2A3A;
  font-weight:700;
  font-size:14px;
  text-decoration:none;

  transition:.2s;
}

.finance-bar:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(5,34,42,.12);
}
.service-page{
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(10,39,70,.08);
}

.service-page:last-child{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-page .btn{
  display: inline-flex;
  width: auto;
  margin: 20px 0 0;
  padding: 10px 18px;
  font-size: 14px;
}

.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;

  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);

  padding: 12px 32px;
  z-index: 9999;
}

.cookie-content{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p{
  margin: 0;
  font-size: 15px;      /* 👈 větší */
  line-height: 1.4;
  color: #475569;

  flex: 1;
  white-space: nowrap;  /* 👈 DONUTÍ 1 řádek */
  overflow: hidden;
  text-overflow: ellipsis; /* 👈 když by se nevešlo */
}
.cookie-actions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions .btn{
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 760px){
 .cookie-content{
  width: 100%;
  max-width: none;     /* 👈 zruší omezení úplně */
  padding: 0 40px;     /* 👈 spacing od krajů */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

  .cookie-content p{
    min-width: 0;
    max-width: 100%;
  }

  .cookie-content p br{
    display: none;
  }

  .cookie-actions{
    width: 100%;
    flex-wrap: wrap;
  }

  .cookie-actions .btn{
    flex: 1 1 100%;
  }
}

@media (max-width: 640px){
  .cookie-content{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-content p br{
    display: none;
  }

  .cookie-actions{
    width: 100%;
  }

  .cookie-actions .btn{
    flex: 1;
    width: 100%;
  }
}