/* =========================================================
   Odklidime.cz – Vyklízení (Top UI/UX)
   Page-only styles (MENU is in menu.css)
   ========================================================= */

:root{
  --blue:#0066cc;
  --blue2:#004c99;
  --navy:#003366;

  --green:#1e7c31;
  --green2:#186a29;

  --bg:#f5f7fa;
  --panel:#ffffff;
  --muted:#64748b;
  --text:#0f172a;
  --line:rgba(15, 23, 42, 0.10);

  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow2: 0 14px 40px rgba(0,0,0,0.12);

  --container: 1120px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a{ color:inherit; }
img{ max-width:100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

:focus-visible{
  outline: 3px solid rgba(30,124,49,.75);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Buttons */
.btn-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background: var(--green);
  color:#fff;
  font-weight:800;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 16px;
  text-decoration:none;
  border: none;
  box-shadow: none;
  transition: transform .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn-cta:hover{
  background: var(--green2);
  transform: translateY(-1px);
}
.btn-cta.small{
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 15px;
}

.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight:800;
  font-size: 16px;
  text-decoration:none;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color:#fff;
  transition: background .2s ease, transform .15s ease;
}
.btn-secondary:hover{
  background: rgba(255,255,255,.18);
  transform: translateY(-1px);
}
.btn-secondary.alt{
  background: rgba(0,102,204,.08);
  border: 1px solid rgba(0,102,204,.16);
  color: rgba(0,76,153,1);
}
.btn-secondary.alt:hover{ background: rgba(0,102,204,.12); }

/* Hero */
.hero{
  background: radial-gradient(1200px 600px at 20% 0%, rgba(255,255,255,.16), transparent 60%),
              linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
  padding: 42px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 26px;
  align-items: start;
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight:700;
  font-size: 13px;
  letter-spacing:.2px;
  margin: 0 0 14px;
}
.hero-title{
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 1.06;
  margin: 0 0 12px;
  font-weight: 900;
}
.hero-subtitle{
  font-size: 1.1rem;
  color: rgba(255,255,255,.92);
  margin: 0 0 18px;
  max-width: 650px;
}
.hero-cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}
.hero-trust{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-pill{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight:800;
  font-size: 13px;
}

/* Hero side card */
.hero-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(8px);
}
.hero-card-top h2{
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 900;
}
.hero-card-top p{
  margin: 0 0 12px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 13px;
}
.hero-card-list{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin: 0 0 14px;
}
.hc-item{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  font-size: 14px;
}
.hc-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.70);
  margin-top: 6px;
  flex: 0 0 auto;
}
.hero-card-bottom{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-mini{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.20);
  color:#fff;
  font-weight:900;
  text-decoration:none;
  font-size: 14px;
}
.btn-mini:hover{ background: rgba(255,255,255,.22); }
.btn-mini.outline{ background: transparent; }

/* Sections */
.section{
  padding: 54px 0;
  background: #fff;
}
.section.soft{
  background: #f0f4f8;
}
.section-head{
  text-align:center;
  margin: 0 0 26px;
}
.section-head h2{
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 950;
  color: var(--navy);
}
.section-head p{
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  font-weight: 600;
}

.inline-note{
  margin: 18px auto 0;
  width: min(980px, 100%);
  background: rgba(30,124,49,.08);
  border: 1px solid rgba(30,124,49,.12);
  color: #0f3d1b;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 650;
}
.cta-row{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cards */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card{
  background:#fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,.06);
}
.card-icon{
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: rgba(0,102,204,.08);
  border: 1px solid rgba(0,102,204,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 10px;
  overflow:hidden;
}
.card-icon img{
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.card h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 950;
  color: var(--navy);
}
.list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-weight: 650;
  color:#334155;
}
.li-ico{
  width: 22px;
  display:inline-flex;
  justify-content:center;
  margin-top: 1px;
}

/* Split section */
.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}
.h2{
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 950;
  color: var(--navy);
}
.p{
  margin: 0 0 14px;
  color:#334155;
  font-weight: 650;
}
.box{
  background:#fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,.06);
}
.box h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 950;
  color: var(--navy);
}
.box p{
  margin: 0 0 12px;
  color:#334155;
  font-weight: 650;
}
.pill-row{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,102,204,.08);
  color: rgba(0,76,153,1);
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(0,102,204,.12);
}
.badge.subtle{
  background: rgba(30,124,49,.08);
  border-color: rgba(30,124,49,.12);
  color: rgba(24,106,41,1);
}

/* How */
.how-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.how-card{
  background:#fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,.06);
}
.how-num{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  background: rgba(0,102,204,.10);
  color: rgba(0,76,153,1);
  margin-bottom: 10px;
}
.how-card h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 950;
  color: var(--navy);
}
.how-card p{
  margin: 0;
  color: #334155;
  font-weight: 650;
}

/* Testimonials */
.testimonials-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial{
  background:#fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,.06);
}
.t-top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}
.testimonial-photo{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
}
.t-author{
  font-weight: 950;
  color: var(--navy);
}
.stars{
  font-weight: 950;
  letter-spacing: 1px;
  color: rgba(24,106,41,1);
  font-size: 14px;
}
.t-body{
  margin: 0;
  color:#334155;
  font-weight: 650;
}

/* FAQ */
.faq{
  width: min(980px, 100%);
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.faq-item{
  background:#fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,.06);
  padding: 14px 16px;
}
.faq-item summary{
  cursor:pointer;
  font-weight: 950;
  color: var(--navy);
}
.faq-item p{
  margin: 10px 0 0;
  color:#334155;
  font-weight: 650;
}

/* Footer */
.site-footer{
  background: var(--navy);
  color:#fff;
  padding: 22px 0;
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer p{
  margin:0;
  color: rgba(255,255,255,.92);
  font-weight: 650;
}
.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 800;
  font-size: 14px;
}
.footer-links a:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 1024px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-card{ order: 2; }

  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 820px){
  .hero-cta .btn-cta,
  .hero-cta .btn-secondary{
    width: 100%;
  }
  .how-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .cards-grid{ grid-template-columns: 1fr; }
}
