@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

:root {
  --mint-cream: #FCFDFB;
  --soap-mist: #F4F8F4;
  --bloom-light: #EEF4EE;
  --deep-moss: #282828;
  --forest-gray: #383838;
  --spring-green: #50A050;
  --deep-forest: #308030;
  --glass-overlay: rgba(255, 255, 255, 0.85);
  --pastel-pink: rgb(255, 245, 245);
  --pastel-blue: rgb(245, 250, 255);
  --pastel-green: rgb(245, 255, 248);
  --pastel-yellow: rgb(255, 255, 245);
  --shadow-green: rgba(80, 160, 80, 0.16);
  --shadow-green-strong: rgba(80, 160, 80, 0.32);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--mint-cream);
  color: var(--forest-gray);
  line-height: 1.78;
  font-size: 17px;
  overflow-x: hidden;
}

strong, p, span {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--deep-moss);
}


.floating-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(252, 253, 251, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 2px solid rgba(80, 160, 80, 0.10);
  box-shadow: 0 12px 48px var(--shadow-green);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
}

.floating-nav.scrolled {
  border-color: rgba(80, 160, 80, 0.25);
  box-shadow: 0 16px 64px var(--shadow-green-strong);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo svg {
  width: 28px;
  height: 28px;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 12px;
  color: var(--deep-moss);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: var(--deep-moss);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 12px;
}

.nav-links a:hover {
  color: var(--spring-green);
  background: rgba(80, 160, 80, 0.06);
  transform: scale(1.06);
}

.nav-cta {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--spring-green), var(--deep-forest));
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 9px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 10px 36px var(--shadow-green-strong);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 56px var(--shadow-green-strong);
}


.hamburger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(252, 253, 251, 0.99);
  border: 1px solid rgba(80, 160, 80, 0.2);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 10000;
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--deep-moss);
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--mint-cream);
  z-index: 9998;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--deep-moss);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--spring-green);
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--bloom-light);
  border: none;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}


.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: center;
  padding: 80px 56px;
  position: relative;
  background: var(--mint-cream);
}

.hero-content {
  padding-left: 56px;
}

.hero-title {
  font-size: clamp(5.5rem, 11vw, 11rem);
  font-weight: 700;
  color: var(--deep-moss);
  line-height: 0.84;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--forest-gray);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
  }
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.6s forwards;
}

.hero-cta {
  padding: 22px 52px;
  background: linear-gradient(135deg, var(--spring-green), var(--deep-forest));
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 20px 80px rgba(80, 160, 80, 0.40);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 100px rgba(80, 160, 80, 0.50);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
}

.hero-secondary {
  font-weight: 500;
  font-size: 13px;
  color: var(--deep-moss);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-secondary svg {
  width: 16px;
  height: 16px;
  color: var(--spring-green);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border: 2px solid rgba(80, 160, 80, 0.12);
  border-radius: 16px;
  box-shadow: 0 44px 160px rgba(80, 160, 80, 0.10);
  overflow: hidden;
  background: var(--bloom-light);
}

.hero-image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.glass-overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--glass-overlay);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-indicator span {
  font-size: 10px;
  font-weight: 500;
  color: var(--forest-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


.section {
  padding: 120px 56px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 700;
  color: var(--deep-moss);
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--forest-gray);
  max-width: 600px;
  margin: 0 auto;
}


.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.masonry-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(80, 160, 80, 0.08);
  transition: all 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.masonry-card:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 80px rgba(80, 160, 80, 0.15);
  z-index: 96;
  border-color: rgba(80, 160, 80, 0.20);
}

.masonry-card.large {
  grid-column: span 2;
}

.masonry-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.masonry-card-content {
  padding: 24px;
}

.masonry-card-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--deep-moss);
  margin-bottom: 8px;
}

.masonry-card-desc {
  font-size: 14px;
  color: var(--forest-gray);
  line-height: 1.6;
}

.masonry-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--spring-green);
  margin-top: 12px;
}

.masonry-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--spring-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.masonry-card-link:hover {
  gap: 10px;
}

.masonry-card-link svg {
  width: 14px;
  height: 14px;
}


.horizontal-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.horizontal-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}

.horizontal-block.reverse {
  direction: rtl;
}

.horizontal-block.reverse > * {
  direction: ltr;
}

.horizontal-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bloom-light);
}

.horizontal-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.horizontal-content h3 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--deep-moss);
  line-height: 0.92;
  margin-bottom: 24px;
}

.horizontal-content p {
  font-size: 17px;
  color: var(--forest-gray);
  line-height: 1.78;
}


.sticky-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.sticky-left {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sticky-right {
  padding-top: 60px;
}

.sticky-left h3 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--deep-moss);
  line-height: 0.92;
  margin-bottom: 24px;
}

.sticky-left p {
  font-size: 17px;
  color: var(--forest-gray);
  line-height: 1.78;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 2px solid rgba(80, 160, 80, 0.08);
  transition: all 0.32s ease;
  cursor: pointer;
}

.process-step:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(80, 160, 80, 0.10);
  z-index: 96;
  border-color: rgba(80, 160, 80, 0.20);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--spring-green), var(--deep-forest));
  color: white;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-moss);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--forest-gray);
  line-height: 1.6;
}


.marquee-container {
  overflow: hidden;
  padding: 40px 0;
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 40px;
  background: white;
  border-radius: 12px;
  border: 2px solid rgba(80, 160, 80, 0.10);
  flex-shrink: 0;
  transition: all 0.32s ease;
}

.marquee-item:hover {
  border-color: var(--spring-green);
  box-shadow: 0 8px 32px var(--shadow-green);
}

.marquee-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--spring-green);
}

.marquee-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-moss);
}


.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-card {
  padding: 40px 32px;
  background: white;
  border-radius: 16px;
  border: 2px solid rgba(80, 160, 80, 0.08);
  text-align: center;
  transition: all 0.32s ease;
  cursor: pointer;
}

.advantage-card:hover {
  flex-grow: 1.4;
  box-shadow: 0 16px 64px rgba(80, 160, 80, 0.12);
  z-index: 96;
  border-color: rgba(80, 160, 80, 0.20);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--bloom-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--spring-green);
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
}

.advantage-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-moss);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--forest-gray);
  line-height: 1.6;
}


.team-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 2px solid rgba(80, 160, 80, 0.08);
  cursor: pointer;
  transition: all 0.32s ease;
}

.team-item:hover {
  border-color: var(--spring-green);
  box-shadow: 0 8px 32px var(--shadow-green);
}

.team-item.active {
  border-color: var(--spring-green);
  background: var(--bloom-light);
}

.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bloom-light);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-moss);
  margin-bottom: 4px;
}

.team-info p {
  font-size: 13px;
  color: var(--forest-gray);
}

.team-photo-area {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bloom-light);
  min-height: 500px;
}

.team-photo-area img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.team-photo-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.team-photo-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--spring-green);
  opacity: 0.3;
}


.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  border: 2px solid rgba(80, 160, 80, 0.08);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(80, 160, 80, 0.20);
  box-shadow: 0 8px 32px var(--shadow-green);
}

.faq-item.active {
  border-left: 4px solid var(--spring-green);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  font-weight: 500;
  font-size: 16px;
  color: var(--deep-moss);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--spring-green);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer-content {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--forest-gray);
  line-height: 1.7;
}


.reviews-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1000px;
}

.reviews-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 60px 20px;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 2px solid rgba(80, 160, 80, 0.08);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  min-width: 320px;
}

.review-card.center {
  transform: scale(1.15);
  z-index: 100;
  box-shadow: 0 24px 80px rgba(80, 160, 80, 0.20);
  border-color: var(--spring-green);
}

.review-card:hover {
  z-index: 96;
}

.review-card:not(.center) {
  opacity: 0.7;
  transform: scale(0.85);
}

.review-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  background: var(--bloom-light);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-text {
  font-size: 15px;
  color: var(--forest-gray);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
}

.review-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-moss);
  text-align: center;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  color: var(--spring-green);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.reviews-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(80, 160, 80, 0.15);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.reviews-nav button:hover {
  background: var(--spring-green);
  border-color: var(--spring-green);
  color: white;
}

.reviews-nav button svg {
  width: 20px;
  height: 20px;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--deep-moss);
  line-height: 0.92;
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 17px;
  color: var(--forest-gray);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bloom-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--spring-green);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-moss);
  margin-bottom: 4px;
}

.contact-item-content p {
  font-size: 14px;
  color: var(--forest-gray);
  margin-bottom: 0;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(80, 160, 80, 0.08);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--deep-moss);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--deep-moss);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(80, 160, 80, 0.15);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--deep-moss);
  background: var(--mint-cream);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--spring-green);
  box-shadow: 0 0 0 4px rgba(80, 160, 80, 0.10);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--forest-gray);
  opacity: 0.5;
}

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

.form-submit {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--spring-green), var(--deep-forest));
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px var(--shadow-green-strong);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 56px var(--shadow-green-strong);
}


.footer {
  background: var(--bloom-light);
  border-top: 3px solid var(--spring-green);
  padding: 80px 56px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-moss);
  margin-bottom: 20px;
}

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

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

.footer-col a {
  font-size: 14px;
  color: var(--forest-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
  color: var(--spring-green);
}

.footer-logo span {
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-moss);
}

.footer-desc {
  font-size: 14px;
  color: var(--forest-gray);
  line-height: 1.6;
}

.footer-copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(80, 160, 80, 0.10);
}

.footer-copyright p {
  font-size: 12px;
  font-weight: 700;
  color: var(--deep-moss);
}


.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
  z-index: 9997;
  border: 2px solid rgba(80, 160, 80, 0.15);
  display: block;
}

.cookie-banner h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-moss);
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--forest-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-types {
  margin-bottom: 20px;
}

.cookie-type {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--forest-gray);
  margin-bottom: 8px;
}

.cookie-type::before {
  content: "•";
  color: var(--spring-green);
}

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

.cookie-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--spring-green), var(--deep-forest));
  color: white;
}

.cookie-btn.decline {
  background: var(--soap-mist);
  color: var(--deep-moss);
  border: 2px solid rgba(80, 160, 80, 0.15);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.cookie-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(80, 160, 80, 0.10);
}

.cookie-links a {
  font-size: 11px;
  color: var(--forest-gray);
  text-decoration: none;
}

.cookie-links a:hover {
  color: var(--spring-green);
}


.page-hero {
  min-height: 55vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 120px 56px 80px;
  background: var(--mint-cream);
}

.page-hero-content {
  padding-left: 56px;
}

.page-hero h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 700;
  color: var(--deep-moss);
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 18px;
  color: var(--forest-gray);
  line-height: 1.6;
  max-width: 500px;
}

.page-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border: 2px solid rgba(80, 160, 80, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bloom-light);
}

.page-hero-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}


.thankyou-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 56px;
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  background: var(--bloom-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  color: var(--spring-green);
}

.thankyou-icon svg {
  width: 48px;
  height: 48px;
}

.thankyou-section h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--deep-moss);
  line-height: 0.92;
  margin-bottom: 24px;
}

.thankyou-section p {
  font-size: 18px;
  color: var(--forest-gray);
  max-width: 500px;
  margin-bottom: 40px;
}

.thankyou-cta {
  display: inline-flex;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--spring-green), var(--deep-forest));
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 12px 48px var(--shadow-green-strong);
  transition: all 0.3s ease;
}

.thankyou-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 64px var(--shadow-green-strong);
}


.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 56px;
}

.legal-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--deep-moss);
  line-height: 0.92;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--deep-moss);
  margin: 40px 0 20px;
}

.legal-content p {
  font-size: 16px;
  color: var(--forest-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 20px 0 20px 24px;
}

.legal-content li {
  font-size: 16px;
  color: var(--forest-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}


.map-container {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
  border: 2px solid rgba(80, 160, 80, 0.10);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}


.service-detail-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 56px;
}

.service-detail-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--deep-moss);
  line-height: 0.92;
  margin-bottom: 24px;
}

.service-detail-content p {
  font-size: 17px;
  color: var(--forest-gray);
  line-height: 1.78;
  margin-bottom: 20px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.service-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 2px solid rgba(80, 160, 80, 0.08);
}

.service-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bloom-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--spring-green);
  flex-shrink: 0;
}

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

.service-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-moss);
  margin-bottom: 4px;
}

.service-feature p {
  font-size: 13px;
  color: var(--forest-gray);
  margin-bottom: 0;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bloom-light);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(40, 40, 40, 0.8));
  color: white;
}

.gallery-overlay h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 0;
}


.job-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 2px solid rgba(80, 160, 80, 0.08);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: rgba(80, 160, 80, 0.20);
  box-shadow: 0 12px 48px var(--shadow-green);
}

.job-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-moss);
  margin-bottom: 16px;
}

.job-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.job-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--forest-gray);
}

.job-tag svg {
  width: 16px;
  height: 16px;
  color: var(--spring-green);
}

.job-card .form-submit {
  width: auto;
  padding: 14px 32px;
}


@media (max-width: 1024px) {
  .floating-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 100px 24px 80px;
  }

  .hero-content {
    padding-left: 0;
    text-align: center;
  }

  .hero-cta-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 40px;
  }

  .hero-image-frame {
    max-width: 400px;
  }

  .section {
    padding: 80px 24px;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .masonry-card.large {
    grid-column: span 1;
  }

  .horizontal-block,
  .horizontal-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .sticky-section {
    grid-template-columns: 1fr;
  }

  .sticky-left {
    position: relative;
    top: 0;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .team-section {
    grid-template-columns: 1fr;
  }

  .team-photo-area {
    min-height: 350px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .page-hero-content {
    padding-left: 0;
    text-align: center;
  }

  .page-hero-visual {
    order: -1;
  }

  .page-hero-frame {
    max-width: 400px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .section-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .review-card {
    min-width: auto;
    width: 100%;
  }

  .review-card:not(.center) {
    opacity: 1;
    transform: scale(1);
  }

  .review-card.center {
    transform: scale(1);
  }
}