/* Page Services — premium moderne */

@keyframes ss-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@keyframes ss-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes ss-mesh-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, -2%) scale(1.05); }
}

html:has(body.ss-page) { scroll-behavior: smooth; }

body.ss-page {
  background: #F5F8F1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.ss-page .grain { display: none; }
body.ss-page ::selection {
  background: #C9E6BE;
  color: #0E4429;
}

.ss-services {
  --ss-font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --ss-font-body: 'Manrope', system-ui, sans-serif;
  --ss-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ss-dur: 0.85s;
  font-family: var(--ss-font-body);
  color: #13231A;
  overflow-x: hidden;
}

.ss-services .sc-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #f4faf1 0%, #e8f3e4 100%);
  border: 1px solid rgba(28, 124, 74, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 24px -14px rgba(28, 124, 74, 0.4);
  color: #1C7C4A;
  transition: transform 0.3s var(--ss-ease), box-shadow 0.3s ease;
}
.ss-services .sc-icon-wrap--band {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(155, 224, 138, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
  color: #9BE08A;
}
.ss-services .sc-icon-wrap--xs { width: 32px; height: 32px; border-radius: 10px; margin-bottom: 0; }
.ss-services .sc-icon-wrap--sm { width: 40px; height: 40px; border-radius: 11px; }
.ss-services .sc-icon-wrap--md { width: 54px; height: 54px; border-radius: 15px; }
.ss-services .sc-icon-wrap .sc-icon { width: 55%; height: 55%; display: block; }
.ss-service-card:hover .sc-icon-wrap--md,
.ss-equip-card:hover .sc-icon-wrap--xs {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 28px -12px rgba(28, 124, 74, 0.5);
}

.ss-services [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--ss-dur) var(--ss-ease), transform var(--ss-dur) var(--ss-ease);
  transition-delay: var(--rv-delay, 0ms);
}
.ss-services [data-reveal="fade-right"] { transform: translateX(24px); }
.ss-services [data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ss-services [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ss-hero__orb, .ss-hero__float, .ss-sheller__badge { animation: none; }
}

.ss-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1C7C4A;
  margin-bottom: 14px;
}
.ss-eyebrow--light { color: #9BE08A; }
.ss-eyebrow--icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ss-eyebrow--icon .sc-icon-wrap--xs { margin-bottom: 0; }
.ss-h2 {
  font-family: var(--ss-font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.ss-h2--light { color: #fff; }
.ss-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.ss-section-intro {
  font-size: 17px;
  line-height: 1.55;
  color: #5C6B60;
  font-weight: 500;
  margin: 0;
}

/* Hero */
.ss-hero {
  position: relative;
  overflow: hidden;
}
.ss-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ss-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  animation: ss-mesh-drift 22s ease-in-out infinite;
}
.ss-hero__orb--1 {
  width: min(480px, 65vw);
  height: min(480px, 65vw);
  top: -20%;
  right: -5%;
  background: radial-gradient(circle, rgba(28, 124, 74, 0.12) 0%, transparent 70%);
}
.ss-hero__orb--2 {
  width: min(340px, 50vw);
  height: min(340px, 50vw);
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(201, 230, 190, 0.7) 0%, transparent 72%);
  animation-delay: -9s;
}
.ss-hero__grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + clamp(48px, 7vw, 80px)) clamp(18px, 5vw, 32px) clamp(36px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
.ss-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #8A998D;
  margin-bottom: 22px;
}
.ss-breadcrumb a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.ss-breadcrumb a:hover { color: #1C7C4A; }
.ss-breadcrumb__current { color: #1C7C4A; font-weight: 700; }
.ss-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #E6F1E2;
  color: #1C7C4A;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.ss-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1C7C4A;
  animation: ss-pulse 2s ease-in-out infinite;
}
.ss-hero__title {
  font-family: var(--ss-font-display);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.ss-hero__title em {
  font-style: normal;
  color: #1C7C4A;
}
.ss-hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: #5C6B60;
  max-width: 480px;
  margin: 0 0 34px;
  font-weight: 500;
}
.ss-hero__copy {
  max-width: 620px;
}
.ss-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ss-ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  border: 1px solid transparent;
}
.ss-btn--primary {
  background: #1C7C4A;
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(28, 124, 74, 0.8);
}
.ss-btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(28, 124, 74, 0.85);
}
.ss-btn--line {
  background: #fff;
  color: #13231A;
  border-color: #DCE6D6;
}
.ss-btn--line:hover {
  border-color: #1C7C4A;
  transform: translateY(-1px);
}
.ss-btn--white {
  background: #fff;
  color: #0E4429;
}
.ss-btn--white:hover { transform: translateY(-2px); }
.ss-btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.ss-btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

.ss-hero__visual { position: relative; }
.ss-hero__photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(15, 68, 41, 0.5);
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #EEF4E9 0%, #E8F2E2 100%);
}
.ss-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ss-hero__float {
  position: absolute;
  left: -14px;
  bottom: 40px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 44px -20px rgba(15, 68, 41, 0.45);
  display: flex;
  align-items: center;
  gap: 13px;
  animation: ss-float 6s ease-in-out infinite;
}
.ss-hero__float-icon .sc-icon-wrap { margin: 0; }
.ss-hero__float-label {
  font-size: 12px;
  color: #8A998D;
  font-weight: 600;
}
.ss-hero__float-title {
  font-family: var(--ss-font-display);
  font-weight: 700;
  font-size: 16px;
  color: #1C7C4A;
  letter-spacing: -0.01em;
}

/* Services cards */
.ss-services-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) clamp(18px, 5vw, 32px);
  background: linear-gradient(180deg, rgba(238, 244, 233, 0.35) 0%, transparent 100%);
}
.ss-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.ss-service-card {
  background: linear-gradient(145deg, #fff 0%, #FAFCF8 100%);
  border: 1px solid #E3EADE;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 48px -42px rgba(15, 68, 41, 0.4);
  transition: transform 0.35s var(--ss-ease), box-shadow 0.35s, border-color 0.35s;
}
.ss-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(28, 124, 74, 0.22);
  box-shadow: 0 32px 56px -36px rgba(15, 68, 41, 0.45);
}
.ss-service-card__icon { margin-bottom: 22px; }
.ss-service-card__icon .sc-icon-wrap { margin: 0; }
.ss-service-card__title {
  font-family: var(--ss-font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.ss-service-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: #5C6B60;
  font-weight: 500;
  margin: 0;
}

/* Equipment */
.ss-equip {
  background: linear-gradient(160deg, #EEF4E9 0%, #E6EFE0 50%, #EEF4E9 100%);
}
.ss-equip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) clamp(18px, 5vw, 32px);
}
.ss-equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.ss-equip-card {
  background: #fff;
  border: 1px solid #E1EBDB;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px -44px rgba(15, 68, 41, 0.4);
  transition: transform 0.35s var(--ss-ease), box-shadow 0.35s;
}
.ss-equip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 52px -38px rgba(15, 68, 41, 0.48);
}
.ss-equip-card__media {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #E8F0E4;
}
.ss-equip-card__icon {
  position: absolute;
  left: 12px;
  top: 12px;
  line-height: 0;
  z-index: 1;
}
.ss-equip-card__icon .sc-icon-wrap--xs {
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px -12px rgba(15, 68, 41, 0.35);
}
.ss-equip-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ss-ease);
}
.ss-equip-card:hover .ss-equip-card__media img { transform: scale(1.04); }
.ss-equip-card__body { padding: 18px 20px; }
.ss-equip-card__name {
  font-family: var(--ss-font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  margin: 0 0 5px;
}
.ss-equip-card__desc {
  font-size: 13.5px;
  line-height: 1.45;
  color: #5C6B60;
  font-weight: 500;
  margin: 0;
}

/* Sheller */
.ss-sheller {
  background: linear-gradient(165deg, #0E4429 0%, #0B3A22 55%, #0E4429 100%);
  color: #fff;
}
.ss-sheller__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) clamp(18px, 5vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
.ss-sheller__visual { position: relative; }
.ss-sheller__photo {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
  aspect-ratio: 4 / 3;
  background: #124E33;
}
.ss-sheller__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ss-sheller__badge {
  position: absolute;
  right: -14px;
  top: 28px;
  background: #1C7C4A;
  color: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.5);
  animation: ss-float 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ss-sheller__badge .sc-icon-wrap--xs {
  margin: 0;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  box-shadow: none;
}
.ss-sheller__badge-title {
  font-family: var(--ss-font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.ss-sheller__badge-sub {
  font-size: 12px;
  color: #CFE8C5;
  font-weight: 600;
}
.ss-sheller__lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: #BFD6B6;
  font-weight: 500;
  margin: 0 0 28px;
}
.ss-sheller__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}
.ss-sheller__benefit {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #0F4F31;
  border: 1px solid #1A6340;
  border-radius: 16px;
  padding: 18px;
}
.ss-sheller__benefit-icon { line-height: 0; flex-shrink: 0; }
.ss-sheller__benefit-icon .sc-icon-wrap--xs { margin: 0; }
.ss-sheller__benefit-text {
  font-size: 14.5px;
  line-height: 1.45;
  color: #E4F0DE;
  font-weight: 500;
}

/* CTA */
.ss-cta {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 32px);
}
.ss-cta__panel {
  background: linear-gradient(135deg, #1C7C4A 0%, #168044 45%, #0E4429 100%);
  border-radius: 32px;
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 90px -45px rgba(15, 68, 41, 0.7);
}
.ss-cta__deco {
  position: absolute;
  top: -40px;
  right: -20px;
  opacity: 0.12;
  pointer-events: none;
  color: #fff;
}
.ss-cta__deco svg { width: 200px; height: 200px; }
.ss-cta__title {
  font-family: var(--ss-font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: #fff;
  position: relative;
  text-wrap: balance;
}
.ss-cta__text {
  font-size: 18px;
  line-height: 1.5;
  color: #CFE8C5;
  font-weight: 500;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}
.ss-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 1024px) {
  .ss-hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 48px);
  }
  .ss-hero__copy {
    max-width: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ss-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .ss-hero__actions {
    justify-content: center;
  }
  .ss-hero__visual {
    max-width: 440px;
    margin: 0 auto;
  }
  .ss-sheller__grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
  }
}

@media (max-width: 768px) {
  .ss-hero__grid {
    padding: calc(var(--nav-h) + 28px) 20px 40px;
  }
  .ss-badge {
    font-size: 11.5px;
    padding: 7px 14px;
    margin-bottom: 20px;
    max-width: min(100%, 420px);
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
  }
  .ss-hero__title {
    font-size: clamp(32px, 8.5vw, 44px);
    margin-bottom: 16px;
  }
  .ss-hero__lead {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 38ch;
  }
  .ss-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }
  .ss-hero__actions .ss-btn {
    width: 100%;
    justify-content: center;
  }
  .ss-hero__photo {
    border-radius: 20px;
  }
  .ss-hero__float {
    left: 8px;
    bottom: 16px;
    right: 8px;
    max-width: calc(100% - 16px);
  }
  .ss-hero__float-title {
    font-size: 15px;
  }

  .ss-services-block {
    padding: 48px 20px;
  }
  .ss-section-head {
    margin-bottom: 36px;
  }
  .ss-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ss-service-card {
    padding: 28px 24px;
  }

  .ss-equip__inner {
    padding: 48px 20px;
  }
  .ss-equip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .ss-equip-card__media {
    height: 130px;
  }

  .ss-sheller__grid {
    padding: 48px 20px;
  }
  .ss-sheller__content {
    text-align: center;
  }
  .ss-sheller__content .ss-eyebrow--icon {
    justify-content: center;
  }
  .ss-sheller__benefits {
    grid-template-columns: 1fr;
  }
  .ss-sheller__content > .ss-btn {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
  .ss-sheller__badge {
    right: 8px;
    top: 16px;
    max-width: calc(100% - 16px);
  }

  .ss-cta {
    padding: 48px 20px;
  }
  .ss-cta__panel {
    border-radius: 22px;
    padding: 36px 24px;
  }
  .ss-cta__text {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .ss-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ss-cta__actions .ss-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ss-hero__title {
    font-size: clamp(28px, 9vw, 36px);
  }
  .ss-hero__lead {
    max-width: none;
  }
  .ss-badge {
    font-size: 10.5px;
    letter-spacing: -0.01em;
  }
  .ss-h2 {
    font-size: clamp(24px, 7vw, 32px);
  }
  .ss-section-intro {
    font-size: 15.5px;
  }
  .ss-equip-grid {
    grid-template-columns: 1fr;
  }
  .ss-service-card__title {
    font-size: 20px;
  }
  .ss-cta__title {
    font-size: clamp(24px, 7vw, 32px);
  }
}
