:root {
  --primary: #1a5276;
  --primary-dark: #0e3a5c;
  --secondary: #e67e22;
  --secondary-light: #f39c12;
  --accent: #16a085;
  --dark: #1c2833;
  --light: #f4f6f7;
  --gray: #5d6d7e;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

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

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav-wrapper {
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  width: 40px;
  height: 40px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  font-weight: 500;
  color: var(--dark);
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-image {
  width: 100%;
  max-width: 450px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: #1abc9c;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-primary {
  background: var(--primary);
  color: var(--white);
}

.section-gradient {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-dark .section-title,
.section-primary .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 50px;
  max-width: 600px;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Problem Section */
.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.problem-item {
  flex: 1;
  min-width: 280px;
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
}

.problem-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.problem-item p {
  color: var(--gray);
}

/* Story Section */
.story-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}

.story-image {
  flex: 1;
}

.story-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.story-content p {
  margin-bottom: 20px;
  color: var(--gray);
}

/* Benefits */
.benefits-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.benefit-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Services / Pricing */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  border: 3px solid var(--secondary);
  position: relative;
}

.service-card.featured::before {
  content: 'Nejprodávanější';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  padding: 30px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--gray);
  font-size: 0.9rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Testimonials */
.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Stats */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.section-dark .stat-number {
  color: var(--secondary-light);
}

.stat-label {
  font-size: 1rem;
  color: var(--gray);
}

.section-dark .stat-label {
  color: rgba(255,255,255,0.8);
}

/* CTA Sections */
.cta-box {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 60px 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-inline {
  background: var(--light);
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-inline-text h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.cta-inline-text p {
  color: var(--gray);
}

/* Form Styles */
.form-wrapper {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-main {
  flex: 2;
}

.about-sidebar {
  flex: 1;
  background: var(--light);
  padding: 30px;
  border-radius: var(--radius-lg);
}

.about-main h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 40px;
}

.about-main h2:first-child {
  margin-top: 0;
}

.about-main p {
  margin-bottom: 18px;
  color: var(--gray);
}

.about-sidebar h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.about-sidebar ul {
  list-style: none;
}

.about-sidebar li {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  color: var(--gray);
}

/* Contact Page */
.contact-wrapper {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

.contact-form-area {
  flex: 1;
}

.contact-block {
  margin-bottom: 40px;
}

.contact-block h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.contact-block p {
  color: var(--gray);
  line-height: 1.8;
}

.working-hours {
  background: var(--light);
  padding: 25px;
  border-radius: var(--radius);
}

.working-hours h3 {
  margin-bottom: 15px;
}

.working-hours ul {
  list-style: none;
}

.working-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.working-hours li:last-child {
  border-bottom: none;
}

/* Thanks Page */
.thanks-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.thanks-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.thanks-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 15px;
}

.thanks-content .btn {
  margin-top: 30px;
}

/* Legal Pages */
.legal-content {
  padding: 60px 0;
}

.legal-content h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--primary);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--gray);
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 10px;
  color: var(--gray);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--secondary-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 15px 20px;
  z-index: 90;
  display: none;
}

.sticky-cta.visible {
  display: block;
}

.sticky-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 15px;
}

.sticky-cta-text {
  font-weight: 600;
  color: var(--dark);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--secondary-light);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 10px 25px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.cookie-accept {
  background: var(--secondary);
  color: var(--white);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

/* Urgency Elements */
.urgency-badge {
  display: inline-block;
  background: #e74c3c;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.limited-offer {
  background: linear-gradient(90deg, #e74c3c, #c0392b);
  color: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius);
  text-align: center;
  margin: 20px 0;
}

/* Trust Badges */
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
}

.trust-badge svg {
  width: 40px;
  height: 40px;
  fill: var(--primary);
}

/* Insight Box */
.insight-box {
  background: linear-gradient(135deg, var(--light) 0%, #e8eef3 100%);
  border-left: 5px solid var(--accent);
  padding: 35px;
  margin: 40px 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.insight-box h3 {
  color: var(--accent);
  margin-bottom: 15px;
}

/* Split Layout */
.split-section {
  display: flex;
  min-height: 500px;
}

.split-left,
.split-right {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px;
}

.split-left {
  background: var(--primary);
  color: var(--white);
}

.split-right {
  background: var(--white);
}

.split-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.split-content p {
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .story-wrapper {
    flex-direction: column;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .split-section {
    flex-direction: column;
  }

  .split-left,
  .split-right {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid var(--light);
  }

  .nav-menu a {
    display: block;
    padding: 15px 0;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .form-wrapper {
    padding: 30px 20px;
  }

  .cta-box {
    padding: 40px 25px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stats-row {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .service-card {
    min-width: 100%;
  }

  .benefit-card {
    min-width: 100%;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .problem-item {
    min-width: 100%;
  }
}
