/* ============================================
   KANALIZACE PARDUBICE — STYLESHEET
   Profesionální, důvěryhodný design
   Barvy: tmavě modrá (důvěra) + oranžová (akce) + šedá
   ============================================ */

/* CSS Variables */
:root {
  --primary: #0F3D5E;
  --primary-dark: #092B43;
  --primary-light: #1E5A86;
  --accent: #FF7A00;
  --accent-dark: #E56B00;
  --accent-light: #FFF0E0;
  --text: #1A2332;
  --text-muted: #5A6473;
  --text-light: #8B94A3;
  --bg: #FFFFFF;
  --bg-alt: #F7F9FC;
  --bg-dark: #0F3D5E;
  --border: #E2E8F0;
  --border-dark: #CBD5E0;
  --success: #16A34A;
  --shadow-sm: 0 1px 3px rgba(15, 61, 94, 0.08);
  --shadow: 0 4px 12px rgba(15, 61, 94, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 61, 94, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar-text {
  font-weight: 500;
  color: #fff;
}
.topbar-phone {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}
.topbar-phone:hover { color: #fff; }

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.logo-text span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all 0.15s;
}
.nav a:hover { background: var(--bg-alt); color: var(--primary); }
.nav a.active { color: var(--primary); background: var(--bg-alt); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.15s;
}
.header-phone:hover { background: var(--accent-dark); color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-xl { padding: 20px 36px; font-size: 18px; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #0F3D5E 0%, #1E5A86 100%);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255, 122, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(30, 90, 134, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 122, 0, 0.2);
  border: 1px solid rgba(255, 122, 0, 0.4);
  color: #FFB366;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 span {
  color: var(--accent);
  font-weight: 700;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* Hero card */
.hero-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  color: var(--text);
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.status-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.1); }
}
.hero-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}
.hero-card-list {
  margin-bottom: 20px;
}
.hero-card-list li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

/* Urgency strip */
.urgency {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.urgency-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.urgency-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.urgency-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.urgency-item strong {
  display: block;
  font-size: 16px;
  color: var(--primary);
  font-weight: 700;
}
.urgency-item span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Section header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services */
.services { padding: 80px 0; background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.2s;
  color: var(--text);
  display: block;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.service-card.highlighted {
  border-color: var(--accent);
  background: linear-gradient(to bottom, #fff 0%, #FFFBF7 100%);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* Process */
.process { padding: 80px 0; background: #fff; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Areas */
.areas { padding: 80px 0; background: var(--bg-alt); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.area-column {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.area-column h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}
.area-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.area-list li:last-child { border-bottom: none; }
.areas-note {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 15px;
}
.areas-note a {
  color: var(--accent);
  font-weight: 600;
}

/* Testimonials */
.testimonials { padding: 80px 0; background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
}
.testimonial-stars {
  color: #FFB800;
  font-size: 18px;
  margin-bottom: 12px;
}
.testimonial p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ */
.faq { padding: 80px 0; background: var(--bg-alt); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact */
.contact { padding: 80px 0; background: var(--primary); color: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-label {
  background: rgba(255, 122, 0, 0.2);
}
.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.contact-info strong { color: #fff; }
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: #fff;
  transition: background 0.15s;
}
.contact-method:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 122, 0, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-method strong {
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px;
}
.contact-method span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Form */
.contact-form {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label > span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 61, 94, 0.1);
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.contact-form .checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-form .checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-form .checkbox span {
  display: inline;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-form .checkbox a {
  color: var(--primary);
  font-weight: 500;
}
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Why us */
.whyus { padding: 80px 0; background: #fff; }
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.whyus-item {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.2s;
}
.whyus-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.whyus-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}
.whyus-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.whyus-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Final */
.cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #D84315 100%);
  text-align: center;
  color: #fff;
}
.cta-final h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}
.cta-final .btn {
  background: #fff;
  color: var(--accent);
}
.cta-final .btn:hover {
  background: var(--primary-dark);
  color: #fff;
}
.cta-sub {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.cta-sub a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo strong {
  display: block;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}
.footer-logo span {
  font-size: 13px;
  color: var(--accent);
}
.footer-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul li {
  padding: 4px 0;
  font-size: 14px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-contact strong { color: var(--accent); font-size: 16px; }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1.6;
}
.footer-disclaimer {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* Mobile sticky call button */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  z-index: 99;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}
.mobile-call:hover { color: #fff; }

/* Cookie notice */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  z-index: 98;
  max-width: 600px;
  margin: 0 auto;
}
.cookie-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 0;
}
.cookie-notice p {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.5;
}
.cookie-notice a { color: var(--primary); font-weight: 500; }
.cookie-notice .btn { flex-shrink: 0; padding: 10px 18px; }

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 40px; }
  .nav { display: none; }
  .urgency-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; gap: 4px; font-size: 13px; text-align: center; }
  .header-phone span { display: none; }
  .hero { padding: 50px 0 30px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-trust { gap: 20px; flex-wrap: wrap; }
  .trust-item strong { font-size: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .urgency-inner { grid-template-columns: 1fr; gap: 16px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-header h2 { font-size: 28px; }
  .cta-final h2 { font-size: 28px; }
  .contact-info h2 { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-xl { padding: 16px 24px; font-size: 16px; }
  .btn-lg { width: 100%; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  body { padding-bottom: 70px; }
  .mobile-call { display: flex; }
  .cookie-notice { bottom: 60px; }
}

@media (max-width: 400px) {
  .header-phone { padding: 8px 12px; font-size: 13px; }
  .header-phone span { display: none; }
  .logo-text strong { font-size: 16px; }
  .logo-text span { font-size: 11px; }
}
