/* ============================================
   WINDL & MATÁŠ DÔCHODKOVÝ KONZULTING
   Nature Organic Design System
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: #3d3027;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* NATURE ORGANIC COLOR PALETTE */
:root {
  --earth-brown: #5d4e37;
  --forest-green: #4a6741;
  --sage-green: #8b9a7c;
  --sand-beige: #d4c5b0;
  --cream: #faf8f5;
  --deep-earth: #3d3027;
  --moss: #6b7f5d;
  --terracotta: #b8673d;
  --soft-white: #f5f3ef;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--deep-earth);
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: var(--deep-earth);
}

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

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

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

li {
  margin-bottom: 12px;
  line-height: 1.7;
}

strong {
  color: var(--earth-brown);
  font-weight: 600;
}

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

/* HEADER */
header {
  background: linear-gradient(to bottom, var(--cream), var(--soft-white));
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(61, 48, 39, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(139, 154, 124, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--earth-brown);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background-color: var(--moss);
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: var(--forest-green);
  background-color: rgba(139, 154, 124, 0.1);
}

.main-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background-color: var(--forest-green);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.3);
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
}

.mobile-menu-toggle:hover {
  background-color: var(--moss);
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--cream), var(--soft-white));
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 3px solid var(--sage-green);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--earth-brown);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(139, 154, 124, 0.2);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  gap: 8px;
}

.mobile-nav a {
  color: var(--earth-brown);
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(139, 154, 124, 0.15);
  border-color: var(--sage-green);
  color: var(--forest-green);
  transform: translateX(8px);
}

/* BUTTONS */
.cta-button,
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
}

.cta-button,
.cta-primary {
  background-color: var(--forest-green);
  color: white;
  box-shadow: 0 4px 16px rgba(74, 103, 65, 0.3);
}

.cta-button:hover,
.cta-primary:hover {
  background-color: var(--moss);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 103, 65, 0.4);
}

.cta-secondary {
  background-color: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green);
}

.cta-secondary:hover {
  background-color: var(--forest-green);
  color: white;
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(139, 154, 124, 0.1), rgba(212, 197, 176, 0.2));
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid rgba(139, 154, 124, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 154, 124, 0.2), transparent);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .subheadline {
  font-size: 20px;
  color: var(--earth-brown);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.trust-badge,
.trust-indicator,
.trust-indicators {
  font-size: 14px;
  color: var(--moss);
  font-weight: 600;
  margin-top: 24px;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.section-intro {
  font-size: 18px;
  color: var(--earth-brown);
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

/* CARDS */
.services-grid,
.value-grid,
.stats-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.value-item,
.stat-item,
.contact-method {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(61, 48, 39, 0.08);
  transition: all 0.3s ease;
  border: 2px solid rgba(139, 154, 124, 0.2);
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--sage-green), var(--moss));
  border-radius: 16px 16px 0 0;
}

.service-card:hover,
.value-item:hover,
.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 48, 39, 0.12);
  border-color: var(--sage-green);
}

.service-card h3,
.value-item h3,
.stat-item h3,
.contact-method h3 {
  color: var(--forest-green);
  margin-bottom: 16px;
}

.service-card p,
.value-item p {
  color: var(--deep-earth);
  margin-bottom: 16px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--terracotta);
  margin-top: 20px;
  font-family: 'Merriweather', serif;
}

/* PROBLEM-SOLUTION SECTION */
.problem-solution {
  background: linear-gradient(to bottom, rgba(139, 154, 124, 0.05), white);
  border-radius: 24px;
  margin: 40px 20px;
}

.problem-list {
  list-style: none;
  padding-left: 0;
  margin: 32px 0;
}

.problem-list li {
  padding: 16px 20px 16px 56px;
  margin-bottom: 16px;
  background: white;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 2px 8px rgba(61, 48, 39, 0.06);
  border-left: 4px solid var(--terracotta);
}

.problem-list li::before {
  content: '✗';
  position: absolute;
  left: 20px;
  color: var(--terracotta);
  font-size: 20px;
  font-weight: bold;
}

.solution-statement {
  font-size: 18px;
  font-weight: 600;
  color: var(--forest-green);
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 16px;
  margin: 32px 0;
  border: 2px solid var(--sage-green);
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(135deg, rgba(212, 197, 176, 0.1), rgba(139, 154, 124, 0.1));
  border-radius: 24px;
  padding: 60px 40px;
}

.expertise-statement {
  font-size: 18px;
  font-weight: 600;
  color: var(--earth-brown);
  text-align: center;
  margin: 40px 0;
}

.statistics {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.statistics span {
  font-size: 24px;
  font-weight: 700;
  color: var(--forest-green);
  padding: 16px 24px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(61, 48, 39, 0.08);
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(to bottom, rgba(139, 154, 124, 0.08), white);
  padding: 60px 20px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(61, 48, 39, 0.08);
  border-left: 4px solid var(--sage-green);
  position: relative;
}

.testimonial-card p:first-child {
  font-size: 18px;
  font-style: italic;
  color: var(--deep-earth);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--earth-brown);
  text-align: right;
  margin-bottom: 0;
}

.rating {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--terracotta);
  margin-top: 32px;
}

/* TEXT SECTIONS */
.text-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-section h2 {
  margin-bottom: 24px;
}

.text-section p,
.text-section ul,
.text-section ol {
  max-width: 800px;
}

/* PROCESS STEPS */
.process-steps {
  padding: 60px 20px;
}

.step {
  background: white;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(61, 48, 39, 0.08);
  border-left: 6px solid var(--sage-green);
  position: relative;
}

.step h3 {
  color: var(--forest-green);
  margin-bottom: 16px;
}

.step strong {
  color: var(--earth-brown);
}

/* FAQ SECTION */
.faq-section {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.faq-item {
  background: white;
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(61, 48, 39, 0.06);
  border: 2px solid rgba(139, 154, 124, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--sage-green);
  transform: translateX(4px);
}

.faq-item h3 {
  color: var(--forest-green);
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--deep-earth);
}

/* BLOG/ARTICLES */
.article-card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(61, 48, 39, 0.08);
  border-top: 4px solid var(--sage-green);
  transition: all 0.3s ease;
  position: relative;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 48, 39, 0.12);
}

.article-card h3 {
  color: var(--forest-green);
  margin-bottom: 12px;
}

.category {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(139, 154, 124, 0.2);
  color: var(--earth-brown);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

.articles-list {
  list-style: none;
  padding-left: 0;
}

.articles-list li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background: white;
  border-radius: 12px;
  border-left: 3px solid var(--sage-green);
  transition: all 0.3s ease;
}

.articles-list li:hover {
  transform: translateX(8px);
  background-color: rgba(139, 154, 124, 0.05);
}

/* CONTACT PAGE */
.contact-methods {
  padding: 60px 20px;
}

.contact-method img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.contact-method h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.phone-cta {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 32px 0;
}

.phone-cta a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-cta a:hover {
  color: var(--terracotta);
}

/* FOUNDERS */
.founders {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(212, 197, 176, 0.1), rgba(139, 154, 124, 0.05));
}

.founder-profile {
  background: white;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(61, 48, 39, 0.08);
  border-left: 6px solid var(--terracotta);
}

.founder-profile h3 {
  color: var(--forest-green);
  margin-bottom: 8px;
}

.credentials {
  font-size: 16px;
  color: var(--earth-brown);
  font-weight: 600;
  margin-bottom: 16px;
}

/* VALUES */
.values {
  padding: 60px 20px;
}

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  padding: 20px 24px 20px 64px;
  margin-bottom: 20px;
  background: white;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 3px 12px rgba(61, 48, 39, 0.06);
  border-left: 4px solid var(--sage-green);
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 24px;
  color: var(--forest-green);
  font-size: 24px;
  font-weight: bold;
}

/* LOCATION & INFO */
.location,
.office-info,
.coverage-area {
  padding: 40px 20px;
  background: rgba(139, 154, 124, 0.05);
  border-radius: 16px;
  margin: 40px 20px;
}

.note,
.gdpr-note {
  font-size: 14px;
  color: var(--moss);
  font-style: italic;
  margin-top: 16px;
}

/* COMPANY INFO */
.company-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
  justify-content: center;
}

.company-info p {
  background: white;
  padding: 20px 28px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(61, 48, 39, 0.08);
  border-top: 3px solid var(--sage-green);
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, rgba(139, 154, 124, 0.1), rgba(212, 197, 176, 0.15));
  padding: 60px 40px;
  border-radius: 24px;
  margin: 40px 20px;
  text-align: center;
}

/* CONFIRMATION/SUCCESS */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--forest-green);
  color: white;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(74, 103, 65, 0.3);
}

.confirmation-message,
.next-steps {
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin: 40px 20px;
  box-shadow: 0 4px 16px rgba(61, 48, 39, 0.08);
}

.confirmation-message ol {
  text-align: left;
  max-width: 600px;
  margin: 32px auto;
}

.email-confirmation {
  font-size: 14px;
  color: var(--moss);
  font-style: italic;
  margin-top: 24px;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, rgba(74, 103, 65, 0.1), rgba(139, 154, 124, 0.15));
  padding: 80px 40px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 20px;
}

.cta-final h2 {
  margin-bottom: 16px;
}

.cta-final p {
  font-size: 18px;
  margin-bottom: 32px;
  color: var(--earth-brown);
}

.secondary-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.secondary-links a {
  color: var(--forest-green);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.secondary-links a:hover {
  background-color: rgba(139, 154, 124, 0.15);
}

/* FORM NOTICE */
.form-notice {
  background: rgba(139, 154, 124, 0.1);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--sage-green);
  margin-top: 32px;
}

/* FOOTER */
footer {
  background: linear-gradient(to bottom, var(--earth-brown), var(--deep-earth));
  color: var(--sand-beige);
  padding: 60px 20px 32px;
  margin-top: 80px;
  border-top: 4px solid var(--sage-green);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  color: var(--sand-beige);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p,
.footer-section a {
  color: rgba(212, 197, 176, 0.9);
  font-size: 14px;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--sage-green);
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  transform: translateX(8px);
}

.copyright {
  text-align: center;
  color: rgba(212, 197, 176, 0.7);
  font-size: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 197, 176, 0.2);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--earth-brown), rgba(61, 48, 39, 0.98));
  color: var(--cream);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--sage-green);
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

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

.cookie-btn-accept:hover {
  background-color: var(--moss);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--sand-beige);
  border: 2px solid var(--sand-beige);
}

.cookie-btn-reject:hover {
  background-color: rgba(212, 197, 176, 0.1);
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--sage-green);
  border: 2px solid var(--sage-green);
}

.cookie-btn-settings:hover {
  background-color: rgba(139, 154, 124, 0.1);
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--sage-green);
}

.cookie-modal h2 {
  color: var(--forest-green);
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: rgba(139, 154, 124, 0.05);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 2px solid rgba(139, 154, 124, 0.2);
}

.cookie-category h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  color: var(--earth-brown);
}

.cookie-toggle {
  width: 48px;
  height: 24px;
  background-color: #ccc;
  border-radius: 24px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: var(--forest-green);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* PAGINATION */
.pagination {
  text-align: center;
  margin-top: 40px;
  color: var(--earth-brown);
  font-weight: 600;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .subheadline {
    font-size: 18px;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-button,
  .cta-primary,
  .cta-secondary {
    width: 100%;
  }

  .services-grid,
  .value-grid,
  .stats-grid,
  .contact-grid {
    flex-direction: column;
  }

  .service-card,
  .value-item,
  .stat-item,
  .contact-method {
    flex: 1 1 100%;
  }

  .statistics {
    flex-direction: column;
    gap: 16px;
  }

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

  .footer-section {
    flex: 1 1 100%;
  }

  section {
    padding: 40px 16px;
  }

  .container {
    padding: 0 16px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .company-info {
    flex-direction: column;
  }

  .phone-cta {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .logo {
    height: 50px;
  }

  .hero {
    padding: 40px 16px;
  }

  .service-card,
  .value-item,
  .testimonial-card,
  .step,
  .faq-item,
  .article-card {
    padding: 20px;
  }

  .price {
    font-size: 24px;
  }

  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
}

/* SMOOTH TRANSITIONS */
* {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .cta-primary,
  .cta-secondary {
    display: none;
  }

  body {
    color: black;
    background: white;
  }

  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 3px solid var(--sage-green);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--forest-green);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.value-item,
.testimonial-card,
.article-card {
  animation: fadeIn 0.6s ease forwards;
}

/* HOVER EFFECTS */
.service-card:hover .price {
  color: var(--forest-green);
  transform: scale(1.05);
}

/* NATURE ORGANIC TEXTURES */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(139, 154, 124, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 197, 176, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* END OF STYLES */