/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #2f5d3a;
  --light-green: #e6f0ea;
  --dark: #1f1f1f;
  --gray: #6f6f6f;
  --bg: #f7f9f7;
  --white: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--dark);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* TOP BAR */
.top-bar {
  background: var(--green);
  color: white;
  font-size: 15px;
}

.top-bar .container {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bar a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;  
  padding: 0 20px;
  transition: all 0.3s ease;
}

.top-bar a span {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.top-bar a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.1); /* Збільшення на 5% */
  color: white; /* Колір залишається білим */
}

.top-bar a:hover span {
  transform: scale(1.05);
}

.top-bar .full-clickable {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; /* Займає всю висоту контейнера */
  padding: 0 30px; /* Бокові відступи */
  border-radius: 0;
  transition: all 0.3s ease;
}

.top-bar .full-clickable:hover {
  background-color: rgba(255, 255, 255, 0.15);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.top-bar .full-clickable span {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.top-bar .full-clickable:hover span {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .top-bar .container {
    flex-wrap: wrap;
    height: auto;
    padding: 8px 0;
    gap: 8px;
    justify-content: space-between;
  }

  .lang-switcher button {
    padding: 3px 6px;
    font-size: 11px;
  }
}

/* HEADER */
.header {
  position: fixed;
  top: 20px;              
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;  
  background: transparent;              
  transition: 
    top 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  }


.header.scrolled {
  top: 0;
  background-color: white;             
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header.scrolled .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}


.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;

}


.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  cursor: pointer;
}

.logo-symbol {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  overflow: hidden; /* ← додай це */
}


.logo-symbol .p,
.logo-symbol .r {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Times New Roman', serif;
  color: #6b3e2e;
  position: relative;
  z-index: 2;
}

.logo-symbol .p {
  margin-right: -1px;
}

/* Зелена дуга посередині */
.leaf-arc {
  position: absolute;
  width: 130%;
  left: -15%;
  top: 40%;
  z-index: 3;
  transform: rotate(-4deg);
}

.logo-text {
  font-size: 1.1rem;
  color: #3f7f3f;
  font-family: 'Times New Roman', serif;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 1px;
}

.lang-switcher {
  display: flex;
  gap: 5px;
  align-items: center;
}

.lang-switcher button {
  padding: 4px 8px;
  border: none;
  background: rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
}

.lang-switcher button:hover {
  background: rgba(255,255,255,0.4);
}

/* Для білого фону header при скролі */
.header.scrolled .logo {
  color: var(--green);
}

.header.scrolled .logo .leaf {
  fill: var(--green);
}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav a:hover {
  transform: scale(1.15);
  color: var(--green);
  font-weight: 600;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  
  /* Анімація */
  transition: all 0.3s ease;
  transform: scale(1);
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 15px rgba(47, 93, 58, 0.2);

}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
/* ✅ ДОДАЙ ЦЕ - зелений фон для кнопки "Орендувати землю" */
.hero-buttons .btn-secondary {
  background: var(--green);
  color: white;
  border: 2px solid var(--green);
  box-shadow: 0 4px 15px rgba(47, 93, 58, 0.2);
}

.hero-buttons .btn-secondary:hover {
  background: #234a2c;
  border-color: #234a2c;
  box-shadow: 0 8px 30px rgba(47, 93, 58, 0.5);
}

/* Hover ефекти */
.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(47, 93, 58, 0.35);
}

.btn-primary:hover {
  background: #234a2c; /* Трохи темніший зелений */
  box-shadow: 0 8px 30px rgba(47, 93, 58, 0.5);
}

.btn-secondary:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
  box-shadow: 0 6px 25px rgba(47, 93, 58, 0.35);
}

/* Active стан (при кліку) */
.btn:active {
  transform: scale(1.02);
  box-shadow: 0 2px 10px rgba(47, 93, 58, 0.3);
}

/* Ripple ефект (опціонально - для extra стилю) */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Щоб текст був поверх ripple ефекту */
.btn span,
.btn {
  position: relative;
  z-index: 1;
}

/* Гамбургер кнопка - приховано на десктопі */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--green);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Анімація гамбургера при відкритті */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Коли header з білим фоном - лінії теж білі */
.header.scrolled .hamburger-line {
  background-color: var(--green);
}

/* Mobile Navigation */
@media (max-width: 900px) {
  }


/* FLOATING CALL BUTTON */
.float-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #2f5d3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Пульсуючий ефект */
.float-call-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25a244;
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.6); opacity: 0;   }
  100% { transform: scale(1.6); opacity: 0;   }
}

/* На мобільних — трохи менша кнопка */
@media (max-width: 600px) {
  .float-call-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
}

  /* Ховаємо навігацію за замовчуванням */
.nav {
  display: none; /* ← додано */
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: white;
  flex-direction: column;
  align-items: flex-start;
  padding: 120px 30px 30px; /* ← було 100px */
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

  /* Відкрите меню */
  .nav.active {
    right: 0;
    display: flex;
  }

  /* Стилі посилань у мобільному меню */
  .nav a {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  /* Overlay (затемнення фону) */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }


/* Для дуже маленьких екранів */
@media (max-width: 500px) {
  .nav {
    width: 85%;
    max-width: none;
  }
}

/* HERO */
.hero {
  padding: 100px 0;
  background-image: url('pole.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
}

/* Затемнення фону */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* SVG Хвиля */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
  transform: translateZ(0);

}

.hero-wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  transform: scaleX(1.01);

}

@media (max-width: 768px) {
  .hero-wave svg {
    height: 60px;
  }
}


.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-intro {
  padding: 80px 0;
  background: var(--light-green);
  text-align: center;
  position: relative;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro-content {
  max-width: 100%;
  text-align: center;
}

.about-intro h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
  text-align: center;
}

.about-intro h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%); 
  width: 100px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

.about-intro p {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 30px;
  text-align: center; 

}

.about-intro-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
}

.about-intro-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}


/* Responsive */
@media (max-width: 768px) {
  .about-intro {
    padding: 60px 0;
  }

  .about-intro h2 {
    font-size: 1.8rem;
  }

  .about-intro p {
    font-size: 1.05rem;
  }
}



/* SECTIONS */
.about, .features {
  padding: 80px 0;
}

.features {
    padding: 80px 0;
    background: var(--light-green);
    position: relative; /* Важливо! */
}

/* Хвиля внизу секції features */
.features-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
  transform: translateZ(0);
}

.features-wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  transform: scaleX(1.01);
}

@media (max-width: 768px) {
  .features-wave svg {
    height: 60px;
  }
}


.features h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

/* Анімація при скролі - початковий стан */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Коли елемент стає видимим */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


.feature-card:nth-child(1).visible {
  transition-delay: 0.1s;
}

.feature-card:nth-child(2).visible {
  transition-delay: 0.3s;
}

.feature-card:nth-child(3).visible {
  transition-delay: 0.5s;
}

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.feature-card h3 {
  margin-bottom: 15px;
  color: var(--green);
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
}

.features h2.animate-on-scroll {
  transform: translateY(-20px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) {
    animation-delay: 0.2s;
  }
}

/* FAQ SECTION */
.faq {
  padding: 80px 0 40px 0;
  background: white;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 50px;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 2px solid var(--light-green);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--green);
}

.faq-item.active {
  border-color: var(--green);
  box-shadow: 0 5px 20px rgba(47, 93, 58, 0.1);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--green);
}

.faq-item.active .faq-question {
  color: var(--green);
}

.faq-icon {
  color: var(--green);
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--light-green);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
  padding-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

/* CTA */
.cta {
  padding: 30px 0;
  background: var(--white);
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: var(--gray);
}

.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}



/* FORMS */
.form {
  max-width: 500px;
  margin-top: 30px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

/* About */
.about-hero {
  background-image: url('pole.jpg');
  background-size: cover;
  background-position: center;
  height: 380px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  text-align: center;      /* текст по центру */

}

/* Затемнення фону */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* ABOUT CONTENT */

.about-hero h1 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 3.2rem;
  letter-spacing: 1px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);  /* ← Додай/посиль тінь */

}

/* ROUGH EDGE */
.about-rough {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.about-rough svg {
  display: block;
  width: 100%;
  height: 120px;
}

.about-content-section {
  background-color: #eef4ec; /* світло-зелений */
  padding: 80px 0;
}

.about-content-section .container {
  max-width: 800px;
  text-align: center;
}

.about-content-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2f3e2f;
  margin-bottom: 20px;
}

.about-benefits {
  padding: 80px 0 100px;
  background: white;
}

.benefits-intro {
  text-align: center;
  margin-bottom: 30px;
}

.benefits-intro h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.benefits-intro p {
  font-size: 1.2rem;
  color: var(--gray);
}

.benefits-subtitle {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-subtitle h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green);
  position: relative;
  display: inline-block;
}

/* Декоративна лінія під підзаголовком */
.benefits-subtitle h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  opacity: 0.3;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--light-green);
  padding: 40px 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(47, 93, 58, 0.15);
  border-color: var(--green);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
}

.benefit-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits-intro h2 {
    font-size: 2rem;
  }

  .benefits-subtitle h3 {
    font-size: 1.2rem;
  }

  .benefit-card {
    padding: 30px 25px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero {
    height: 260px;
  }

  .about-hero h1 {
    font-size: 2.4rem;
  }

  .about-wave svg {
    height: 50px;
  }
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* GLOBAL */
body {
  font-family: 'Inter', sans-serif;
  background-color: #eef4ec;
  color: #2f3e2f;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.ethics-hero {
  padding: 140px 0 80px;
  background: var(--light-green);
  text-align: center;
}

.ethics-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--dark);
  position: relative;
}

/* Декоративні лінії по боках заголовка */
.ethics-hero h1::before,
.ethics-hero h1::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1000px;
  height: 1px;
  background: var(--gray);
  opacity: 0.3;
}

.ethics-hero h1::before {
  right: calc(100% + 60px);
}

.ethics-hero h1::after {
  left: calc(100% + 60px);
}

.ethics-intro {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
}

.ethics-intro p {
  margin-bottom: 20px;
}

/* ETHICS CONTENT - список */
.ethics-content {
  padding: 60px 0 100px;
  background: var(--light-green);
}

.ethics-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e0e0e0;
}

.ethics-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ethics-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--green);
  opacity: 0.6;
  min-width: 80px;
  flex-shrink: 0;
}

.ethics-text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
}

.ethics-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 15px;
}

.ethics-text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ethics-hero h1 {
    font-size: 2.5rem;
  }

  .ethics-hero h1::before,
  .ethics-hero h1::after {
    display: none;
  }

  .ethics-item {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .ethics-number {
    font-size: 2rem;
  }

  .ethics-text h2 {
    font-size: 1.5rem;
  }
}

.sell-hero {
  background: linear-gradient(135deg, #c8e3d4 0%, #e6f0ea 100%);
  padding: 140px 0 80px;
  text-align: center;
}


/* FOOTER */
.site-footer {
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  color: #4b5f4b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ethics-header h1 {
    font-size: 2.3rem;
  }
}

/* SELL PAGE */
.sell-hero {
  background: var(--light-green);
  padding: 140px 0 80px;
  text-align: center;
}

.sell-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.sell-hero p {
  font-size: 1.2rem;
  color: var(--gray);
}

.sell-content {
  padding: 80px 0 100px;
  background: white;
}

.sell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT: Information */
.sell-info h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 30px;
}

.info-list {
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: start;
}

.info-icon {
  width: 30px;
  height: 30px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.info-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--dark);
  padding-top: 3px;
}

.sell-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 15px;
}

.land-types {
  list-style: none;
  padding-left: 0;
}

.land-types li {
  font-size: 1.05rem;
  color: var(--dark);
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.land-types li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

/* RIGHT: Form */
.sell-form-wrapper {
  position: sticky;
  top: 100px;
}

.sell-form-card {
  background: var(--light-green);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.sell-form-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-subtitle {
  color: var(--gray);
  margin-bottom: 30px;
}

.sell-form .form-group {
  margin-bottom: 20px;
}

.sell-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.sell-form input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.sell-form input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 93, 58, 0.1);
}

.sell-form input::placeholder {
  color: #aaa;
}

.btn-large {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 10px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  margin-top: 20px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .sell-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sell-form-wrapper {
    position: static;
  }

  .sell-hero h1 {
    font-size: 2.5rem;
  }

  .sell-form-card {
    padding: 30px 25px;
  }
}

.rent-hero {
  background: var(--light-green);  /* ← Замість gradient */
  padding: 140px 0 80px;
  text-align: center;
}

.rent-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.rent-hero p {
  font-size: 1.2rem;
  color: var(--gray);
}

/* ПЕРЕВАГИ ОРЕНДИ */
.rent-benefits {
  padding: 80px 0;
  background: white;
}

.rent-benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 50px;
}

.rent-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* ← 4 в ряд */
  gap: 30px;  /* ← Збільш відступ (було 25px) */
}


.rent-benefit-card {
  background: var(--light-green);
  padding: 35px 30px;  /* ← Трохи більше padding */
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.rent-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(47, 93, 58, 0.15);
}

.rent-benefit-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green);
  box-shadow: 0 3px 10px rgba(47, 93, 58, 0.1);
}

.rent-benefit-icon svg {
  color: var(--green);
}

.rent-benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  margin-top: 10px;  /* ← Відступ від іконки */
}


.rent-benefit-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 12px;  /* ← Відступ від заголовка */
}

@media (max-width: 900px) {
  .rent-benefits-grid {
    grid-template-columns: repeat(2, 1fr);  /* 2 в ряд */
  }
}

@media (max-width: 600px) {
  .rent-benefits-grid {
    grid-template-columns: 1fr;  /* 1 в ряд */
  }
}

/* TIMELINE ПРОЦЕСУ */
.rent-process {
  padding: 80px 0;
  background: var(--bg);
}

.rent-process h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 60px;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(47, 93, 58, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding-top: 10px;
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ФОРМА + ІНФО (поміняні місцями) */
.rent-content {
  padding: 80px 0 100px;
  background: white;
}

.rent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ФОРМА зліва */
.rent-form-wrapper {
  /* Не sticky, щоб відрізнялось від Sell */
}

.rent-form-card {
  background: var(--light-green);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.rent-form-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.rent-form .form-group {
  margin-bottom: 20px;
}

.rent-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.rent-form input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.rent-form input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 93, 58, 0.1);
}

/* ІНФО справа */
.rent-info h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 30px;
}

.rent-info-box {
  background: var(--light-green);
  padding: 30px;
  border-radius: 15px;
  margin-top: 40px;
}

.rent-info-box h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .rent-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .rent-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rent-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .rent-benefits-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    gap: 20px;
  }

  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .rent-form-card {
    padding: 30px 25px;
  }
}


/* Privacy lists */
.privacy-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.privacy-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  line-height: 1.7;
  color: var(--gray);
}

.privacy-list li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--green);
  font-size: 1.5rem;
  line-height: 1.3;
}

.last-updated {
  font-size: 0.95rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 10px;
}

/* CONTACT PAGE */
.contact-hero {
  background: var(--light-green);
  padding: 140px 0 80px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: var(--gray);
}

.contact-content {
  padding: 80px 0 100px;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT: Contact Info */
.contact-info-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--light-green);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateX(5px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.contact-card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-card-content a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: opacity 0.3s;
}

.contact-card-content a:hover {
  opacity: 0.7;
}

.contact-card-content p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
  margin: 5px 0 0 0;
}

.contact-note {
  font-size: 0.85rem !important;
  color: var(--gray) !important;
  margin-top: 5px;
}

.contact-map {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* RIGHT: Form */
.contact-form-section {
  position: sticky;
  top: 100px;
}

.contact-form-card {
  background: var(--light-green);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232f5d3a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 93, 58, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-form-section {
    position: static;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-form-card {
    padding: 30px 25px;
  }

  .contact-cards {
    gap: 15px;
  }

  .contact-card {
    padding: 20px;
  }
}

/* ETHICS / PRIVACY / TERMS PAGES */

.ethics-hero {
  padding: 140px 0 80px;
  background: var(--light-green);
  text-align: center;
}

.ethics-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--dark);
  position: relative;
}

/* Декоративні лінії по боках заголовка */
.ethics-hero h1::before,
.ethics-hero h1::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 350px;
  height: 1px;
  background: var(--gray);
  opacity: 0.3;
}

.ethics-hero h1::before {
  right: calc(100% + 50px);
}

.ethics-hero h1::after {
  left: calc(100% + 50px);
}

.ethics-intro {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
}

.ethics-intro p {
  margin-bottom: 20px;
}

.last-updated {
  font-size: 0.95rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 10px;
}

/* ETHICS CONTENT - список */
.ethics-content {
  padding: 60px 0 100px;
  background: var(--light-green);
}

.ethics-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e0e0e0;
}

.ethics-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ethics-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--green);
  opacity: 0.6;
  min-width: 80px;
  flex-shrink: 0;
}

.ethics-text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
}

.ethics-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 15px;
}

.ethics-text p:last-child {
  margin-bottom: 0;
}

/* Privacy lists */
.privacy-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.privacy-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  line-height: 1.7;
  color: var(--gray);
}

.privacy-list li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--green);
  font-size: 1.5rem;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 900px) {
  .ethics-hero h1 {
    font-size: 2.5rem;
  }

  .ethics-hero h1::before,
  .ethics-hero h1::after {
    display: none;
  }

  .ethics-item {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .ethics-number {
    font-size: 2rem;
  }

  .ethics-text h2 {
    font-size: 1.5rem;
  }
}


/* FOOTER */
.footer {
  background: var(--green);
  color: white;
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-address {
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0.9;
}

.footer-id {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-contact {
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-contact strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: opacity 0.3s;
}

.footer-contact a:hover {
  opacity: 0.8;
}


.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}