:root {
  --primary: #2d5a3d;
  --primary-dark: #1e3d29;
  --secondary: #8fbc8f;
  --accent: #d4a574;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --bg: #faf9f7;
  --bg-alt: #f0efe9;
  --white: #ffffff;
  --shadow: rgba(45, 90, 61, 0.12);
  --border: #e0ddd5;
}

* {
  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(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.ad-disclosure {
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.header {
  background: var(--white);
  box-shadow: 0 2px 12px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
  font-size: 15px;
}

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

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: 0.3s;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-alt);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 24px;
  font-weight: 800;
}

.hero p {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

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

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

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

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

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

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

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
}

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

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

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

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
}

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

.story-section {
  padding: 80px 0;
}

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

.story-content.reverse {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1;
}

.story-text h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.story-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 17px;
}

.story-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-alt);
  min-height: 400px;
}

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

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.problem-card {
  flex: 1 1 280px;
  background: var(--white);
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  border-left: 4px solid var(--accent);
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.problem-card p {
  color: var(--text-light);
  font-size: 15px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.benefit-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 16px var(--shadow);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-dark);
}

.benefit-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.benefit-content p {
  color: var(--text-light);
  font-size: 15px;
}

.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.testimonial-grid {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1;
  background: var(--white);
  padding: 36px;
  border-radius: 16px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 72px;
  color: var(--secondary);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  padding-top: 32px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

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

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

.testimonial-info h4 {
  color: var(--primary-dark);
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-info span {
  color: var(--text-light);
  font-size: 14px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  flex: 1 1 340px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
  transition: transform 0.3s;
}

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

.service-image {
  height: 220px;
  background-color: var(--bg-alt);
  overflow: hidden;
}

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

.service-content {
  padding: 32px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.service-content p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 20px;
}

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

.price-current {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.price-unit {
  color: var(--text-light);
  font-size: 14px;
}

.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.cta-box {
  background: var(--white);
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 16px 64px var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.cta-box p {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 32px;
}

.form-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.form-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.form-info {
  flex: 1;
}

.form-info h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.form-info p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 17px;
}

.form-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.form-feature svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  flex-shrink: 0;
}

.form-wrapper {
  flex: 1;
  background: var(--white);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 40px var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
}

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

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

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 18px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
}

.trust-badge-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 16px var(--shadow);
}

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

.trust-badge span {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 40px;
}

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

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

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

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

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s;
}

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

.disclaimer {
  background: var(--bg-alt);
  padding: 32px;
  border-radius: 12px;
  margin-top: 40px;
  border-left: 4px solid var(--accent);
}

.disclaimer p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

.references {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.references h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.references ol {
  padding-left: 20px;
}

.references li {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.references a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 24px var(--shadow);
  z-index: 1000;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
}

.cookie-text p {
  font-size: 14px;
  color: var(--text-light);
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

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

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

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

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-reject {
  background: var(--bg-alt);
  color: var(--text);
}

.cookie-reject:hover {
  background: var(--border);
}

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

.page-header h1 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.content-page {
  padding: 80px 0;
}

.content-page h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.content-page h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.content-page p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 16px;
}

.content-page ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-page li {
  margin-bottom: 8px;
  color: var(--text);
}

.contact-grid {
  display: flex;
  gap: 60px;
  margin-top: 48px;
}

.contact-info {
  flex: 1;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-dark);
}

.contact-details h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.contact-details p {
  color: var(--text-light);
  font-size: 15px;
}

.contact-map {
  flex: 1;
  background: var(--bg-alt);
  border-radius: 16px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.about-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--bg-alt);
  min-height: 450px;
}

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

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 17px;
}

.stats-row {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
}

.values-grid {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 24px var(--shadow);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--primary-dark);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.value-card p {
  color: var(--text-light);
  font-size: 15px;
}

.thanks-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

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

.thanks-icon {
  width: 120px;
  height: 120px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thanks-icon svg {
  width: 56px;
  height: 56px;
  fill: var(--primary-dark);
}

.thanks-content h1 {
  font-size: 42px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.inline-cta {
  background: var(--secondary);
  padding: 32px;
  border-radius: 12px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.inline-cta p {
  font-size: 18px;
  color: var(--primary-dark);
  font-weight: 600;
  margin: 0;
}

.sticky-cta {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta .btn {
  box-shadow: 0 8px 32px var(--shadow);
}

@media (max-width: 968px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px;
    gap: 24px;
    transition: right 0.3s;
    box-shadow: -4px 0 24px var(--shadow);
  }

  .nav.active {
    right: 0;
  }

  .nav-toggle {
    display: block;
    z-index: 101;
  }

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

  .story-content,
  .story-content.reverse {
    flex-direction: column;
  }

  .story-image {
    min-height: 300px;
  }

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

  .form-container {
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }

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

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

  .stats-row {
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

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

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .hero {
    min-height: 70vh;
  }

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

  .hero p {
    font-size: 16px;
  }

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

  .form-wrapper {
    padding: 32px 24px;
  }

  .trust-badges {
    gap: 24px;
  }
}
