:root {
  --primary: #2d8a4e;
  --primary-dark: #1f6b3a;
  --secondary: #f4a236;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

.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 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: var(--shadow);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

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

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

.nav-menu a:hover {
  color: var(--primary);
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: #e8942a;
  transform: translateY(-2px);
}

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

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

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%232d8a4e" opacity="0.1"/></svg>');
  background-size: 100px;
  transform: rotate(15deg);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--dark);
}

.hero-title span {
  color: var(--primary);
}

.hero-text {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  position: relative;
}

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

.hero-stat {
  position: absolute;
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.hero-stat.stat-1 {
  bottom: 30px;
  left: -30px;
}

.hero-stat.stat-2 {
  top: 30px;
  right: -20px;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

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

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

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

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

.section-green {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

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

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

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

.problem-card:hover {
  transform: translateY(-10px);
}

.problem-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.problem-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.problem-text {
  color: var(--gray);
  font-size: 0.95rem;
}

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

.story-image {
  flex: 1;
  position: relative;
}

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

.story-content {
  flex: 1;
}

.story-quote {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.4;
}

.story-text {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 20px;
}

/* Benefits Section */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.benefit-item {
  flex: 1 1 calc(50% - 25px);
  min-width: 280px;
  display: flex;
  gap: 20px;
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  transition: background 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255,255,255,0.15);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-text {
  font-size: 0.95rem;
  opacity: 0.85;
}

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

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 25px;
  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: 600;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 3px;
}

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

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

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

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

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

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

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.service-content {
  padding: 30px;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

.service-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.service-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 20px;
}

.service-price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

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

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

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

.form-subtitle {
  color: var(--gray);
  text-align: center;
  margin-bottom: 35px;
}

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

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45, 138, 78, 0.1);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%236c757d" d="M6 8L1 3h10z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
}

/* CTA Sections */
.cta-banner {
  text-align: center;
  padding: 80px 20px;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  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;
  gap: 20px;
}

.sticky-cta-text {
  font-weight: 600;
}

.sticky-cta-price {
  color: var(--primary);
  font-weight: 700;
}

/* Trust Badges */
.trust-section {
  text-align: center;
  padding: 60px 20px;
  background: var(--light);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-badge-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
}

.trust-badge-text {
  font-weight: 600;
  font-size: 0.9rem;
}

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

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

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

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

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

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

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

.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;
}

.footer-copy {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--white);
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: none;
}

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

.cookie-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
}

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

.cookie-btn {
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

.cookie-btn-reject {
  background: var(--light);
  color: var(--dark);
}

/* Urgency Elements */
.urgency-bar {
  background: linear-gradient(90deg, var(--secondary), #f4c236);
  color: var(--dark);
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.countdown {
  display: inline-flex;
  gap: 5px;
  margin-left: 10px;
}

.countdown-item {
  background: var(--dark);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 700;
}

/* Thanks Page */
.thanks-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.thanks-card {
  background: var(--white);
  padding: 60px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 600px;
}

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

.thanks-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
}

.thanks-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.thanks-service {
  background: var(--light);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.thanks-service-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 5px;
}

.thanks-service-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

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

.page-header-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

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

/* Content Pages */
.content-section {
  padding: 80px 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--dark);
}

.content-wrapper h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: var(--dark);
}

.content-wrapper p {
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.8;
}

.content-wrapper ul {
  margin: 20px 0;
  padding-left: 25px;
}

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

/* Contact Page */
.contact-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  flex: 1.5;
  min-width: 300px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 5px;
}

.contact-value {
  font-weight: 600;
  font-size: 1.1rem;
}

/* About Page */
.about-hero {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

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

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

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

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

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

.team-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}

.team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  color: var(--gray);
  margin-bottom: 15px;
}

/* Services Page */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-row {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-row-image {
  flex: 1;
  min-width: 300px;
}

.service-row-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.service-row-content {
  flex: 1;
  min-width: 300px;
}

.service-row-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-row-text {
  color: var(--gray);
  margin-bottom: 20px;
}

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

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-text {
    margin: 0 auto 35px;
  }

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

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

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

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

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

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

  .hero-title {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

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

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

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

  .sticky-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .page-header {
    padding: 120px 0 60px;
  }

  .page-header-title {
    font-size: 2rem;
  }

  .service-row,
  .service-row:nth-child(even) {
    flex-direction: column;
  }
}
