:root {
  --primary: #2d5a3d;
  --primary-dark: #1e3d2a;
  --secondary: #8ab17d;
  --accent: #d4a574;
  --text-dark: #2c3e2d;
  --text-light: #f8faf8;
  --bg-light: #f5f7f4;
  --bg-cream: #faf9f6;
  --bg-moss: #e8ede6;
  --shadow: rgba(45, 90, 61, 0.12);
}

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

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

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

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

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

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

header {
  background: var(--bg-cream);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}

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

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

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

nav {
  display: flex;
  align-items: center;
}

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

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

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

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

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

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

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

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

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

.btn-accent:hover {
  background: #c49460;
}

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

section {
  padding: 80px 0;
}

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

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

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--text-light);
}

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

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 20px;
  color: var(--primary-dark);
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-moss) 0%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  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="none" stroke="%238ab17d" stroke-width="0.5" opacity="0.3"/></svg>') repeat;
  background-size: 80px;
  opacity: 0.4;
  transform: rotate(15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 320px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 520px;
  color: #4a6b4d;
}

.hero-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-img-wrapper {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px var(--shadow);
}

.hero-img-wrapper svg {
  width: 60%;
  height: auto;
}

.feature-strip {
  padding: 50px 0;
  background: var(--primary);
}

.feature-strip-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.feature-item {
  flex: 1;
  min-width: 200px;
  color: var(--text-light);
}

.feature-item strong {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.intro-block {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.intro-block.reverse {
  flex-direction: row-reverse;
}

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

.intro-text p {
  margin-bottom: 20px;
}

.intro-visual {
  flex: 1;
  min-width: 280px;
}

.intro-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-moss), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  flex: 1 1 320px;
  background: white;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 8px 30px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px var(--shadow);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-moss);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

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

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
}

.testimonials {
  padding: 100px 0;
}

.testimonial-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.testimonial-card {
  flex: 1 1 340px;
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 40px 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: 20px;
  padding-top: 30px;
}

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

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

.author-info strong {
  display: block;
  color: var(--primary-dark);
}

.author-info span {
  font-size: 0.85rem;
  color: #777;
}

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

.cta-banner h2 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-section {
  padding: 100px 0;
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  padding: 50px 45px;
  border-radius: 16px;
  box-shadow: 0 15px 50px var(--shadow);
}

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

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

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

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

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.contact-info-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-info-item {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

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

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.contact-details h4 {
  color: var(--primary-dark);
  margin-bottom: 5px;
}

footer {
  background: var(--primary-dark);
  color: var(--text-light);
  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 {
  color: var(--secondary);
  margin-bottom: 18px;
  font-size: 1.1rem;
}

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

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

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

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

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

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

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

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

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

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

.cookie-reject {
  background: #e8ede6;
  color: var(--text-dark);
}

.cookie-reject:hover {
  background: #dce3d9;
}

.sticky-cta {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 90;
}

.sticky-cta .btn {
  box-shadow: 0 6px 25px var(--shadow);
  border-radius: 50px;
  padding: 16px 30px;
}

.page-header {
  background: linear-gradient(135deg, var(--bg-moss), var(--bg-cream));
  padding: 120px 0 60px;
  text-align: center;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #4a6b4d;
}

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  margin-top: 40px;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section ul {
  margin: 15px 0 15px 25px;
}

.content-section li {
  margin-bottom: 8px;
}

.team-grid {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.team-member {
  flex: 1 1 280px;
  text-align: center;
}

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

.team-member h3 {
  margin-bottom: 5px;
}

.team-member span {
  color: #666;
  font-size: 0.95rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px var(--shadow);
}

.value-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.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;
  background: var(--secondary);
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
}

.thanks-content h1 {
  color: var(--primary);
  margin-bottom: 15px;
}

.thanks-content p {
  font-size: 1.15rem;
  margin-bottom: 30px;
}

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

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

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

  .nav-menu li {
    border-bottom: 1px solid #e8ede6;
  }

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

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

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-block,
  .intro-block.reverse {
    flex-direction: column;
  }

  section {
    padding: 60px 0;
  }

  .form-wrapper {
    padding: 35px 25px;
  }

  .sticky-cta {
    bottom: 80px;
    right: 15px;
  }

  .sticky-cta .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .feature-strip-inner {
    flex-direction: column;
    gap: 25px;
  }

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