.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  overflow-x: clip;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 236, 232, 0.9);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(22, 54, 35, 0.08);
  border-bottom-color: transparent;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #102c19;
}

.nav__brand-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.nav__brand-label {
  display: flex;
  align-items: baseline;
  gap: 0.34rem;
}

.nav__brand-logo {
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
}

.nav__brand-text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2f6840;
}

.nav__menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.95rem;
}

.nav__link {
  color: #334155;
  font-size: 1.0rem;
  font-weight: 600;
  position: relative;
  padding: 0.18rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 999px;
  font-size: 1.0rem;
  font-weight: 600;
  padding: 0.62rem 1rem;
}

.nav__toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  place-items: center;
  color: var(--color-white);
  margin-top: 68px;
  overflow: hidden;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background-image: url("../assets/images/hero1.jpg");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0) scale(1.04);
  will-change: transform;
}

.hero__overlay {
  background: linear-gradient(180deg, rgba(7, 20, 12, 0.4) 0%, rgba(7, 20, 12, 0.64) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 0.8rem;
}

.hero__eyebrow {
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 600;
  opacity: 0.9;
}

.hero__title {
  font-size: clamp(2.4rem, 5.8vw, 5.1rem);
  line-height: 1.02;
  max-width: 16ch;
  margin: 0.58rem auto 0.7rem;
  font-weight: 800;
}

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

.hero__subtitle {
  max-width: 42ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hero__subline {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-style: italic;
}

.hero__actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero__scroll {
  display: inline-flex;
  margin-top: 3.2rem;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

.about {
  background: #ffffff;
  padding-top: 7.2rem;
  padding-bottom: 6.5rem;
}

.about .container {
  max-width: 1620px;
}

@media (min-width: 1400px) {
  .about .container {
    min-width: 1500px;
  }
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 2.18fr) minmax(0, 2.12fr);
  gap: 3.4rem;
  align-items: center;
}

.about__copy .section__heading {
  margin-bottom: 1.6rem;
}

.about__eyebrow {
  color: #1f5e2c !important;
  font-size: 1.34rem !important;
  letter-spacing: 0.18em;
  font-weight: 900 !important;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  opacity: 0.92;
}

.about__copy .section__heading h2 {
  font-size: clamp(2.25rem, 3.25vw, 3.45rem);
  margin-bottom: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: #0f172a;
  text-wrap: balance;
}

.about__copy .section__heading p {
  font-size: 1.22rem;
  line-height: 1.82;
  color: #374151;
  max-width: 62ch;
  font-weight: 450;
  text-wrap: pretty;
}

.about__copy .section__heading p + p {
  margin-top: 1rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.9rem;
}

.stat-card {
  background: #f6fbf7;
  border: 1px solid #dcecdf;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(26, 78, 41, 0.08);
  padding: 1.15rem 1rem 1.1rem;
  text-align: center;
}

.stat-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 0.7rem;
  display: grid;
  place-items: center;
  border: 1px solid #c9e3cf;
  background: #edf8ee;
}

.stat-card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #1f5e2c;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card h3 {
  color: #1f5e2c;
  margin-bottom: 0.3rem;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
}

.stat-card p {
  font-size: 0.83rem;
  color: #2f6840;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.about__visual {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 18px 36px rgba(16, 44, 25, 0.14);
  min-height: 560px;
  background: #355a31;
}

.about__visual img,
.about__visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
}

.about__badge {
  position: absolute;
  left: -2.2rem;
  bottom: -1rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.16rem;
  background: rgb(31 94 44);
  color: #ffffff;
  border-radius: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 2.55rem 1.3rem;
  min-width: 230px;
  box-shadow: 0 12px 24px rgba(10, 30, 18, 0.28);
  z-index: 2;
}

.about__badge small {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.values {
  border-top: 1px solid #f1f5f3;
  padding-top: 5.2rem;
  padding-bottom: 5.4rem;
}

.values .section__heading {
  margin-bottom: 2.2rem;
}

.values .section__heading h2 {
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  font-weight: 800;
  color: #1f2937;
}

.values .section__heading h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: #68b75c;
  margin: 0.55rem auto 0;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid #eef3ef;
  border-radius: 20px;
  padding: 1.45rem 1.5rem 1.4rem;
  box-shadow: 0 10px 24px rgba(16, 44, 25, 0.06);
}

.value-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #1f5e2c;
  background: #edf8ee;
  margin-bottom: 1.05rem;
}

.value-card__icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-size: 1.15rem;
  line-height: 1.42;
  margin-bottom: 0.62rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.value-card p {
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.7;
  letter-spacing: 0.002em;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
}

.products {
  background: #ffffff;
}

@media (min-width: 1200px) {
  .products .container {
    width: 80%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}

.products .section__heading {
  margin-bottom: 1.2rem;
}

.products .section__heading p {
  color: #5fae63;
  text-transform: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.products__grid--editorial {
  grid-template-columns: 1.15fr 1fr;
  grid-template-areas: "feature secondary";
  align-items: stretch;
}

.products__grid--editorial .product-card--feature {
  grid-area: feature;
}

.products__grid--editorial .product-card:nth-child(2) {
  grid-area: secondary;
}

.products__grid--reversed {
  grid-template-columns: 1fr 1.15fr;
  grid-template-areas: "secondary feature";
}

.products__grid + .products__grid {
  margin-top: 1.05rem;
}

.product-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #edf2ef;
  box-shadow: 0 12px 26px rgba(15, 39, 25, 0.08);
}

.products__grid--editorial .product-card:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.products__grid--editorial .product-card:nth-child(2) .product-card__media {
  flex: 1;
  aspect-ratio: unset;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 210px;
}

.product-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card__body {
  padding: 1rem 1.05rem 1.05rem;
}

.product-card h3 {
  font-size: 1.48rem;
  line-height: 1.15;
  margin-bottom: 0.34rem;
}

.product-card:not(.product-card--feature) h3 {
  font-size: 1.18rem;
}

.product-card p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}

.product-card--feature .product-card__media {
  aspect-ratio: 12 / 9;
  min-height: 300px;
}

.product-card--feature .product-card__body {
  background: linear-gradient(180deg, rgba(10, 25, 17, 0.24) 0%, rgba(10, 25, 17, 0.78) 42%, rgba(10, 25, 17, 0.95) 100%);
  color: #ffffff;
  margin-top: -180px;
  position: relative;
  z-index: 2;
}

.product-card--feature p {
  color: rgba(255, 255, 255, 0.86);
}

.product-card__eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(102, 187, 106, 0.2);
  color: #d0f1d2;
  border: 1px solid rgba(152, 228, 156, 0.4);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.35rem 0.55rem;
  margin-bottom: 0.6rem;
}

.product-card__desc + .product-card__desc {
  margin-top: 0.6rem;
}

.product-card__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.product-card__meta li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #f5fff5;
  border-radius: 999px;
  font-size: 0.7rem;
  line-height: 1.2;
  padding: 0.34rem 0.55rem;
}

.product-card__note {
  margin-top: 0.8rem;
  color: #3a9452;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-card--split {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 1.1rem 1.05rem 0.4rem;
}

.product-split h3 {
  font-size: 1.02rem;
  margin-bottom: 0.28rem;
}

.product-split p {
  font-size: 0.84rem;
  line-height: 1.45;
}

.products__story {
  margin-top: 1.35rem;
  border: 1px solid #e7eee8;
  border-radius: 18px;
  padding: 1.55rem 1.7rem 1.45rem;
  background: linear-gradient(180deg, #fcfffc 0%, #f7fcf8 100%);
  box-shadow: 0 12px 26px rgba(15, 39, 25, 0.06);
}

.products__story h3 {
  margin-bottom: 0.85rem;
  font-size: 1.36rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.products__story h4 {
  margin: 1.1rem 0 0.55rem;
  font-size: 1.02rem;
  color: #1f5e2c;
  font-weight: 700;
  padding-left: 0.55rem;
}

.products__story-media {
  margin: 0 0 0.6rem 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6efe8;
  float: right;
}

.products__story-media--poster {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #f1f8f2 0%, #dcefe0 100%);
  box-shadow: 0 10px 24px rgba(23, 70, 40, 0.18);
}

.products__story-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.products__story-media figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  margin: 0;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  background: rgba(20, 70, 37, 0.8);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}

.products__story p {
  margin: 0;
  color: #3c4753;
  font-size: 0.96rem;
  line-height: 1.74;
}

.products__story p + p {
  margin-top: 0.75rem;
}

.products__story ul {
  margin: 0.72rem 0 0;
  padding-left: 1.2rem;
  color: #3f4a56;
  display: grid;
  gap: 0.45rem;
}

.products__story li {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.65;
}

.products__closing {
  margin-top: 0.9rem;
  font-weight: 650;
  color: #1f2937;
  font-style: italic;
}

.products__story .btn {
  margin-top: 1rem;
  clear: both;
}

.process {
  background: #1f5e2c;
  color: #ffffff;
}

.process__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.process__title {
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.15rem;
  color: #ffffff;
}

.process__steps {
  list-style: none;
  margin-top: 0;
  display: grid;
  gap: 0.95rem;
}

.process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.process__step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #6bc46b;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
}

.process__step-text h3 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.process__step-text p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.process__media {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.process__media-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(8, 25, 15, 0.28);
}

.process__media-card--wide {
  flex: 1;
  min-width: 250px;
  aspect-ratio: 16 / 11;
}

.process__media-card--square {
  width: 170px;
  aspect-ratio: 1 / 1;
  background: #ffffff;
}

.process__media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process__media-card--square img {
  object-fit: cover;
  padding: 0.7rem;
}
.benefits {
  background: #ffffff;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
  align-items: start;
}

.benefit-item {
  text-align: center;
  padding: 0.25rem 0.45rem;
  border: 0;
  border-radius: 0;
}

.benefits .section__heading {
  margin-bottom: 0.8rem;
}

.benefits .section__heading h2 {
  font-size: clamp(1.95rem, 2.4vw, 2.8rem);
  margin-bottom: 0.2rem;
}

.benefits .section__heading p {
  font-size: 0.88rem;
  color: #4b5563;
}

.benefits__hero-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 1.35rem auto 0.5rem;
  padding: 6px;
  background: #ffffff;
  border: 1px solid #deebe0;
  box-shadow: 0 10px 22px rgba(11, 33, 20, 0.12);
}

.benefits__hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.benefit-item h3 {
  color: #4caf50;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.benefit-item p {
  color: #334155;
  font-size: 0.85rem;
  line-height: 1.45;
  max-width: 22ch;
  margin: 0 auto;
}

.market__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.market__visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 39, 25, 0.12);
}

.market__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

.market__right {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.market__chart {
  min-height: 120px;
  position: relative;
  background: #f8faf9;
  border-radius: 14px;
}

.market__sparkline {
  width: 100%;
  height: 100%;
}

.market__sparkline path {
  fill: none;
  stroke: #d4dde0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market__dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #59bc59;
  transform: translate(-50%, -50%);
}

.market__dot--one { left: 23.2%; top: 60.6% !important; }
.market__dot--two { left: 44.6%; top: 61% !important; }
.market__dot--three { left: 66.1%; top: 56.2%; }

.market__content h2 {
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.08;
  margin-bottom: 0.65rem;
}

.market__content p {
  font-size: 0.95rem;
  line-height: 1.62;
  color: #334155;
  max-width: 56ch;
}

.market__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2.2rem;
  row-gap: 0.7rem;
  margin-top: 1rem;
}

.market__list li {
  padding-left: 0.85rem;
  position: relative;
  font-size: 0.93rem;
  font-weight: 600;
  color: #1f2937;
}

.market__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #59bc59;
}

.quote {
  padding: 4.4rem 0 4rem;
  text-align: center;
  background: #ffffff;
}

.quote blockquote {
  font-size: clamp(1.25rem, 1.9vw, 1.85rem);
  max-width: 32ch;
  margin: 0 auto;
  color: #6b7280;
  font-style: italic;
  font-family: "Playfair Display", Georgia, serif;
}

.quote__author {
  margin-top: 1rem;
  color: #9ca3af;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact {
  background: linear-gradient(180deg, #f6fbf7 0%, #ffffff 100%);
}

.contact__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #e7f0e8;
  box-shadow: 0 18px 38px rgba(17, 48, 28, 0.09);
  background: #ffffff;
}

.contact__info {
  position: relative;
  background: linear-gradient(160deg, #2f7a3f 0%, #2c6f3a 55%, #3a8d4c 100%);
  color: #ffffff;
  padding: 2.2rem 1.9rem;
}

.contact__info::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -70px;
  bottom: -80px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.contact__info h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.contact__intro {
  color: rgba(255, 255, 255, 0.92);
  max-width: 33ch;
  font-size: 0.98rem;
  line-height: 1.62;
  margin-bottom: 1.55rem;
}

.contact__form {
  background: #ffffff;
  padding: 1.7rem 1.8rem 1.55rem;
}

.contact__list {
  list-style: none;
  margin-top: 0;
  display: grid;
  gap: 0.95rem;
}

.contact__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
}

.contact__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
}

.contact__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__item small {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.contact__item strong {
  font-size: 1.08rem;
  line-height: 1.22;
  color: #ffffff;
}

.form__group {
  margin-bottom: 0.92rem;
}

.form__group label {
  display: inline-block;
  margin-bottom: 0.34rem;
  font-size: 0.74rem;
  color: #0f172a;
  font-weight: 700;
}

.form__group input,
.form__group textarea {
  width: 100%;
  border: 1px solid #dce8de;
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  font: inherit;
  font-size: 0.9rem;
  background: #fbfefb;
  color: #1f2937;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form__group textarea {
  min-height: 82px;
  resize: vertical;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #99a3ad;
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: #58b76a;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(88, 183, 106, 0.16);
}

.form__group.has-error input,
.form__group.has-error textarea {
  border-color: #ef4444;
}

.form__error {
  color: #ef4444;
  font-size: 0.78rem;
  min-height: 1rem;
  display: block;
  margin-top: 0.2rem;
}

.form__success {
  color: var(--color-primary);
  margin-top: 0.55rem;
  min-height: 1rem;
  font-size: 0.78rem;
}

.contact .btn--primary.btn--full {
  margin-top: 0.45rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #2f7a3f 0%, #266936 100%);
  padding-block: 0.86rem;
  box-shadow: 0 10px 22px rgba(38, 105, 54, 0.24);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.site-footer {
  background: #1f5e2c;
  color: rgba(236, 253, 245, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.5rem 0 0.85rem;
}

.footer__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
  gap: 1.8rem;
  justify-content: space-between;
}

.footer__brand {
  display: grid;
  gap: 0.5rem;
}

.footer__brand-head {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer__brand-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.2rem;
}

.footer__logo {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 0;
}

.footer__contact h3 {
  color: #ffffff;
  margin-bottom: 0.55rem;
}

.footer__contact-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer__contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
}

.footer__contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.footer__contact-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__contact-list a,
.footer__contact-list span {
  color: rgba(236, 253, 245, 0.9);
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer__contact-list a:hover {
  color: #ffffff;
}

.footer__links ul {
  list-style: none;
  display: grid;
  gap: 0.26rem;
  margin-top: 0.42rem;
  font-size: 0.83rem;
}

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

.footer__copyright {
  text-align: center;
  margin-top: 1.1rem;
  color: rgba(220, 252, 231, 0.78);
  font-size: 0.74rem;
}

.scroll-top {
  position: fixed;
  right: 1.2rem;
  bottom: 3.2rem;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f7a3f 0%, #1f5e2c 100%);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(18, 52, 30, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 98;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-2px);
}

.quick-contact {
  position: fixed;
  right: 1.2rem;
  bottom: 8.2rem;
  z-index: 98;
}

.quick-contact__toggle {
  position: relative;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #4caf50 0%, #2f7a3f 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 52, 30, 0.26);
}

.quick-contact__toggle-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-contact__toggle-icon path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-contact__toggle::before,
.quick-contact__toggle::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(76, 175, 80, 0.35);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.86);
  animation: quickContactPulse 2.2s ease-out infinite;
}

.quick-contact__toggle::after {
  animation-delay: 1.1s;
}

.quick-contact__links {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: max-content;
  min-width: 230px;
  display: grid;
  gap: 0.45rem;
  padding: 0.65rem;
  border-radius: 12px;
  border: 1px solid #e5efe8;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(18, 52, 30, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.quick-contact.is-open .quick-contact__links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.quick-contact__link {
  display: block;
  border-radius: 9px;
  padding: 0.55rem 0.65rem;
  font-size: 0.84rem;
  color: #1f5e2c;
  background: #f6fbf7;
}

.quick-contact__link:hover {
  background: #eaf6ed;
}

@keyframes quickContactPulse {
  0% {
    opacity: 0;
    transform: scale(0.86);
  }
  30% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.submit-success-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(7, 18, 11, 0.62);
  backdrop-filter: blur(3px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.submit-success-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.submit-success-modal__card {
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.1rem;
  box-shadow: 0 18px 34px rgba(9, 22, 13, 0.25);
  text-align: center;
}

.submit-success-modal__card h3 {
  font-size: 1.25rem;
  color: #1f5e2c;
  margin-bottom: 0.5rem;
}

.submit-success-modal__card p {
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.submit-success-modal__card strong {
  color: #1f5e2c;
}

.host-renew-modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(7, 18, 11, 0.74);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.host-renew-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.host-renew-modal__card {
  width: min(560px, 100%);
  background: #ffffff;
  border-radius: 16px;
  padding: 1.3rem 1.2rem 1.1rem;
  box-shadow: 0 18px 36px rgba(9, 22, 13, 0.32);
}

.host-renew-modal__card h3 {
  margin-bottom: 0.6rem;
  color: #1f5e2c;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
}

.host-renew-modal__card p {
  color: #334155;
  line-height: 1.6;
}

.host-renew-modal__deadline {
  margin-top: 0.55rem;
  font-weight: 700;
  color: #b91c1c;
}

.host-renew-modal__actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.host-renew-modal__actions .btn--ghost {
  color: #1f5e2c;
  border-color: rgba(31, 94, 44, 0.35);
  background: rgba(31, 94, 44, 0.08);
}

.host-renew-modal__actions .btn--ghost:hover {
  background: rgba(31, 94, 44, 0.14);
}

body.host-ui-locked > *:not(.host-renew-modal) {
  pointer-events: none;
  user-select: none;
  filter: blur(2px);
}
