/* preview shell */
html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}
body {
  margin: 0;
  overscroll-behavior: none;
}
.site-preview-root {
  display: block;
}

/* Keep hero/nav appearance stable even if sections toggle page theme/color-scheme. */
.wf-assembled-hero-shell,
.wf-assembled-hero-shell * {
  color-scheme: normal !important;
}

/* Hide common model-added fixed “Press D / light–dark” hint UI; document-level key handlers still run */
.site-preview-root [aria-label*="Press D" i],
.site-preview-root [aria-label*="press d" i],
.site-preview-root [title*="Press D" i],
.site-preview-root [title*="light/dark" i],
.site-preview-root [title*="light / dark" i],
.site-preview-root [data-theme-toggle],
.site-preview-root [data-wf-theme-hint],
.site-preview-root .wf-theme-toggle-chip {
  display: none !important;
}

/* === section scroll animations === */
@keyframes wf-section-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/*
 * wf-anim-js is added to <html> by a blocking <head> script before body renders.
 * Without it (no JS), nothing is hidden.
 *
 * Structure per section:
 *   [data-wf-section]     ← outer shell, background, never animated
 *     .wf-section-body    ← passthrough
 *       model root        ← owns background colour, never animated
 *         > children      ← hidden until in-view, then fade+lift
 */
html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
  opacity: 0;
}

.site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
  animation: wf-section-in 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (prefers-reduced-motion: reduce) {
  html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
    opacity: 1;
  }
  .site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
    animation: none;
  }
}

/* === hero_preview.css === */
.wf-hero {
  font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #111;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.wf-hero--nav-only {
  min-height: auto;
  overflow: visible;
}

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

/* NAV */
.wf-hero__nav {
  position: relative;
  z-index: 100;
  background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
  border-bottom: 2px solid #222;
  width: 100%;
}

.wf-hero__nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 62px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
}

.wf-hero__nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 10px;
}

.wf-hero__nav-item a {
  text-decoration: none;
  color: #ccc;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  display: block;
  transition: color 0.2s;
}

.wf-hero__nav-item a:hover {
  color: #4CAF50;
}

.wf-hero__nav-item--active a {
  color: #4CAF50;
  border-bottom: 3px solid #4CAF50;
  padding-bottom: 5px;
}

.wf-hero__nav-cta {
  text-decoration: none;
  background: linear-gradient(135deg, #3cb043 0%, #2d8a2d 50%, #1e6b1e 100%);
  color: #fff;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #4CAF50;
  box-shadow: 0 0 12px rgba(76,175,80,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  margin-left: 20px;
}

.wf-hero__nav-cta:hover {
  background: linear-gradient(135deg, #4dd44d 0%, #3cb043 50%, #2d8a2d 100%);
  box-shadow: 0 0 20px rgba(76,175,80,0.7);
}

@media (min-width: 1200px) {
  .wf-hero__nav-inner {
    position: relative;
    justify-content: flex-end;
  }

  .wf-hero__nav-links {
    position: absolute;
    left: 50%;
    width: max-content;
    flex: 0 0 auto;
    transform: translateX(-50%);
  }

  .wf-hero__nav-cta {
    margin-left: 0;
  }
}

.wf-hero__hamburger {
  display: none;
}

.wf-hero__mobile-menu {
  display: none;
}

@media (max-width: 867.98px) {
  .wf-hero {
    padding-top: 62px;
  }

  .wf-hero__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  }

  .wf-hero__nav-inner {
    justify-content: space-between;
    height: 62px;
    padding: 0 18px;
  }

  .wf-hero__nav-links,
  .wf-hero__nav-cta {
    display: none;
  }

  .wf-hero__hamburger {
    appearance: none;
    background: rgba(17,17,17,0.78);
    border: 1px solid rgba(76,175,80,0.55);
    border-radius: 12px;
    box-shadow:
      0 0 18px rgba(76,175,80,0.24),
      inset 0 1px 0 rgba(255,255,255,0.12);
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    height: 44px;
    justify-content: center;
    margin-left: auto;
    padding: 0 11px;
    position: relative;
    width: 48px;
    z-index: 10002;
  }

  .wf-hero__hamburger-line {
    background: #ffffff;
    border-radius: 999px;
    display: block;
    height: 3px;
    transform-origin: center;
    transition:
      transform 0.32s cubic-bezier(0.68, -0.55, 0.27, 1.55),
      opacity 0.2s ease,
      background 0.2s ease;
    width: 24px;
  }

  .wf-hero__hamburger:hover .wf-hero__hamburger-line,
  .wf-hero__nav--open .wf-hero__hamburger-line {
    background: #4CAF50;
  }

  .wf-hero__nav--open .wf-hero__hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .wf-hero__nav--open .wf-hero__hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .wf-hero__nav--open .wf-hero__hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .wf-hero__mobile-menu {
    backdrop-filter: blur(18px);
    background:
      linear-gradient(180deg, rgba(18,18,18,0.96) 0%, rgba(8,8,8,0.98) 100%),
      radial-gradient(circle at 85% 0%, rgba(76,175,80,0.18), transparent 38%);
    border: 1px solid rgba(76,175,80,0.36);
    border-radius: 0 0 20px 20px;
    box-shadow:
      0 24px 60px rgba(0,0,0,0.72),
      0 0 34px rgba(76,175,80,0.22);
    display: block;
    left: max(12px, env(safe-area-inset-left, 0px));
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    right: max(12px, env(safe-area-inset-right, 0px));
    top: 62px;
    transform: translateY(-18px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 0.28s ease,
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.28s ease;
    visibility: hidden;
    z-index: 10001;
  }

  .wf-hero__nav--open .wf-hero__mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .wf-hero__mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 10px;
  }

  .wf-hero__mobile-links li {
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.24s ease,
      transform 0.3s ease;
  }

  .wf-hero__nav--open .wf-hero__mobile-links li {
    opacity: 1;
    transform: translateY(0);
  }

  .wf-hero__nav--open .wf-hero__mobile-links li:nth-child(1) { transition-delay: 0.04s; }
  .wf-hero__nav--open .wf-hero__mobile-links li:nth-child(2) { transition-delay: 0.08s; }
  .wf-hero__nav--open .wf-hero__mobile-links li:nth-child(3) { transition-delay: 0.12s; }
  .wf-hero__nav--open .wf-hero__mobile-links li:nth-child(4) { transition-delay: 0.16s; }
  .wf-hero__nav--open .wf-hero__mobile-links li:nth-child(5) { transition-delay: 0.2s; }
  .wf-hero__nav--open .wf-hero__mobile-links li:nth-child(6) { transition-delay: 0.24s; }

  .wf-hero__mobile-links a {
    border-radius: 12px;
    color: #ffffff;
    display: block;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.7px;
    padding: 16px 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .wf-hero__mobile-links a:hover {
    background: rgba(76,175,80,0.12);
    color: #4CAF50;
    transform: translateX(4px);
  }

  .wf-hero__mobile-links .wf-hero__mobile-link--active {
    background: rgba(76,175,80,0.16);
    color: #4CAF50;
    box-shadow: inset 3px 0 0 #4CAF50;
  }

  .wf-hero__mobile-links .wf-hero__mobile-cta {
    background: linear-gradient(135deg, #3cb043 0%, #2d8a2d 50%, #1e6b1e 100%);
    border: 1px solid #4CAF50;
    box-shadow: 0 0 18px rgba(76,175,80,0.35);
    color: #ffffff;
    margin-top: 8px;
    text-align: center;
  }
}

@media (max-width: 867.98px) and (prefers-reduced-motion: reduce) {
  .wf-hero__hamburger-line,
  .wf-hero__mobile-menu,
  .wf-hero__mobile-links li,
  .wf-hero__mobile-links a {
    transition: none;
  }
}

/* BODY / BACKDROP */
.wf-hero__body {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 62px);
  overflow: hidden;
}

.wf-hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: url(../input/hero_reference.jpg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.wf-hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* CONTENT */
.wf-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px 20px 40px;
  text-align: center;
}

/* LOGO BADGE AREA */
.wf-hero__logo-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wf-hero__logo-image {
  display: block;
  width: min(820px, 92vw);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(76,175,80,0.35)) drop-shadow(0 12px 40px rgba(0,0,0,0.75));
}

/* HEADLINE BLOCK */
.wf-hero__headline-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 0;
}

.wf-hero__headline {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.6);
}

.wf-hero__headline--green {
  color: #4CAF50;
  text-shadow:
    0 0 20px rgba(76,175,80,0.7),
    2px 2px 8px rgba(0,0,0,0.8);
}

.wf-hero__subheadline {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: clamp(11px, 1.4vw, 16px);
  font-weight: 700;
  color: #dddddd;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
  max-width: 800px;
}

.wf-hero__cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 16px 50px;
  background: linear-gradient(180deg, #3cb043 0%, #2d8a2d 50%, #1e6b1e 100%);
  color: #ffffff;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  border: 2px solid #4dd44d;
  box-shadow:
    0 0 0 3px rgba(76,175,80,0.25),
    0 6px 30px rgba(0,0,0,0.6),
    0 0 40px rgba(76,175,80,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.25s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.wf-hero__cta-btn:hover {
  background: linear-gradient(180deg, #4dd44d 0%, #3cb043 50%, #2d8a2d 100%);
  box-shadow:
    0 0 0 4px rgba(76,175,80,0.4),
    0 8px 40px rgba(0,0,0,0.7),
    0 0 60px rgba(76,175,80,0.5),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* Web Foundation: hero concept image as section background */
.wf-hero__body {
  position: relative;
}
.wf-hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../input/hero_reference.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.wf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.wf-hero__content,
.wf-hero__text-col,
.wf-hero__tablet-preview {
  position: relative;
  z-index: 2;
}

/* === assembled preview layer (hero bg, sections, rhythm, responsive non-hero) === */
/* ========== Assembled preview: coordinated rest-of-site (variant CSS owns section backgrounds) ========== */
.site-preview-root {
  min-height: auto;
  background: #fff;
}

.wf-assembled-hero-shell {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.site-section-wf {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-top: none;
  background: transparent;
  color: inherit;
}

.home-preview-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.home-section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 13px 26px;
  border: 1px solid #4CAF50;
  border-radius: 999px;
  background: linear-gradient(180deg, #3cb043 0%, #2d8a2d 54%, #1e6b1e 100%);
  box-shadow: 0 0 24px rgba(58,183,20,0.3), inset 0 1px 0 rgba(255,255,255,0.18);
  color: #ffffff;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-section-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 34px rgba(58,183,20,0.4), inset 0 1px 0 rgba(255,255,255,0.22);
}

.home-preview-section .about-stats {
  margin-top: 30px;
}

.home-preview-section .services-v4-header,
.home-preview-section .sustainability-v2-header {
  margin-bottom: 34px;
}

.home-services-preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.home-sustainability-preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.home-preview-section .services-v4-card,
.home-preview-section .sustainability-v2-steps article {
  min-height: auto;
}

.cta-section-v2 .home-section-cta {
  margin: 0 0 28px;
}

.cta-section-v2 .cta-message p {
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    padding-left: max(0rem, env(safe-area-inset-left, 0px));
    padding-right: max(0rem, env(safe-area-inset-right, 0px));
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) img,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) video,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) svg {
    max-width: 100%;
    height: auto;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) table {
    display: block;
    width: 100% !important;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .home-preview-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .home-services-preview-grid,
  .home-sustainability-preview-grid {
    grid-template-columns: 1fr;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    min-width: 0;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display:grid"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction:row"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction: row"] {
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) .button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="btn"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="cta"] {
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }
}

/* === about_v1.css === */
.about-section-v1 {
  background: #1a1a1a;
  background-image: radial-gradient(circle at 25% 25%, rgba(58,183,20,0.03) 0%, transparent 50%), linear-gradient(180deg, transparent 0%, rgba(26,26,26,0.8) 100%);
  padding: 80px 48px;
  color: #ffffff;
  font-family: 'Barlow', 'Exo 2', sans-serif;
}

.about-section-v1 .about-container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px 0;
  color: #3ab714;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #3ab714;
  box-shadow: 0 0 14px rgba(58,183,20,0.75);
}

.about-section-v1 .about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-section-v1 h2 {
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 12px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.about-section-v1 .about-subhead {
  font-size: 1.1rem;
  color: #3ab714;
  font-weight: 600;
  margin: 0 0 32px 0;
  letter-spacing: 0.02em;
}

.about-section-v1 p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0 0 24px 0;
}

.about-section-v1 .about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-section-v1 .stat-item {
  text-align: center;
  background: rgba(58,183,20,0.08);
  padding: 20px 12px;
  border-radius: 8px;
  border: 1px solid rgba(58,183,20,0.25);
}

.about-section-v1 .stat-number {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3ab714;
  text-shadow: 0 0 16px rgba(58,183,20,0.7);
}

.about-section-v1 .stat-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.about-section-v1 .about-image {
  position: relative;
}

.about-section-v1 .about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 40px rgba(58,183,20,0.15);
}

@media (max-width: 768px) {
  .about-section-v1 {
    padding: 60px 20px;
  }
  
  .about-section-v1 .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-section-v1 .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* === services_v3.css === */
.services-section-v3 {
  background: #111111;
  background-image: linear-gradient(45deg, rgba(58,183,20,0.02) 25%, transparent 25%), linear-gradient(-45deg, rgba(58,183,20,0.02) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(58,183,20,0.02) 75%), linear-gradient(-45deg, transparent 75%, rgba(58,183,20,0.02) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  padding: 80px 48px;
  color: #ffffff;
  font-family: 'Barlow', 'Exo 2', sans-serif;
}

.services-section-v3 .services-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.services-section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #3ab714;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-section-label::before,
.services-section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #3ab714;
  box-shadow: 0 0 14px rgba(58,183,20,0.75);
}

.services-section-v3 h2 {
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.services-section-v3 .services-intro {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}

.services-section-v3 .services-content {
  background: rgba(26,26,26,0.8);
  border-radius: 12px;
  padding: 48px;
  border: 1px solid rgba(58,183,20,0.25);
}

.services-section-v3 .service-article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

.services-section-v3 .service-article:last-child {
  margin-bottom: 0;
}

.services-section-v3 .article-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #3ab714;
  text-align: center;
  line-height: 1;
  margin-top: 8px;
  text-shadow: 0 0 20px rgba(58,183,20,0.6);
}

.services-section-v3 .service-article h3 {
  font-family: 'Exo 2', 'Rajdhani', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px 0;
}

.services-section-v3 .service-article p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

.services-section-v3 .service-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(58,183,20,0.3) 30%, rgba(58,183,20,0.3) 70%, transparent 100%);
  margin: 32px 0;
}

@media (max-width: 768px) {
  .services-section-v3 {
    padding: 60px 20px;
  }
  
  .services-section-v3 .services-content {
    padding: 32px 24px;
  }
  
  .services-section-v3 .service-article {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .services-section-v3 .article-number {
    font-size: 1.8rem;
  }
}

/* === services_v4.css === */
.services-section-v4 {
  background: #181818;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(58,183,20,0.12), transparent 30%),
    linear-gradient(135deg, rgba(58,183,20,0.04), transparent 44%),
    linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
  color: #ffffff;
  font-family: 'Barlow', 'Exo 2', sans-serif;
  padding: 92px 48px;
}

.services-v4-container {
  max-width: 1220px;
  margin: 0 auto;
}

.services-v4-header {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.services-v4-header h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 0 28px rgba(58,183,20,0.16);
}

.services-v4-header p {
  margin: 0;
  color: #d0d0d0;
  font-size: 1.06rem;
  line-height: 1.6;
}

.services-v4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (min-width: 981px) {
  .services-v4-grid {
    grid-template-columns: repeat(3, minmax(0, 340px));
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.services-v4-card {
  min-height: 260px;
  padding: 30px 26px;
  border: 1px solid rgba(58,183,20,0.24);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(31,31,31,0.94), rgba(12,12,12,0.96));
  box-shadow: 0 16px 44px rgba(0,0,0,0.52), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.services-v4-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58,183,20,0.52);
  box-shadow: 0 22px 54px rgba(0,0,0,0.62), 0 0 26px rgba(58,183,20,0.16);
}

.services-v4-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border: 1px solid rgba(58,183,20,0.42);
  border-radius: 50%;
  color: #3ab714;
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(58,183,20,0.24);
}

.services-v4-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: 'Exo 2', 'Rajdhani', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-v4-card p {
  margin: 0;
  color: #c9c9c9;
  font-size: 0.96rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .services-v4-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-section-v4 {
    padding: 64px 20px;
  }

  .services-v4-header {
    margin-bottom: 38px;
    text-align: left;
  }

  .services-v4-header .services-section-label {
    justify-content: flex-start;
  }

  .services-v4-header .services-section-label::after {
    display: none;
  }

  .services-v4-grid {
    gap: 18px;
  }

  .services-v4-card {
    min-height: auto;
    padding: 26px 22px;
  }
}

/* === sustainability_variations.css === */
.sustainability-section-v2 {
  color: #ffffff;
  font-family: 'Barlow', 'Exo 2', sans-serif;
}

.sustainability-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #3ab714;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sustainability-section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #3ab714;
  box-shadow: 0 0 14px rgba(58,183,20,0.75);
}

.sustainability-v2-header h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 0 24px rgba(58,183,20,0.18);
}

.sustainability-v2-header p {
  margin: 0;
  color: #d0d0d0;
  font-size: 1.08rem;
  line-height: 1.65;
}

.sustainability-section-v2 {
  background: #101010;
  background-image:
    linear-gradient(45deg, rgba(58,183,20,0.025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(58,183,20,0.025) 25%, transparent 25%);
  background-size: 58px 58px;
  padding: 94px 48px;
}

.sustainability-v2-container {
  max-width: 1180px;
  margin: 0 auto;
}

.sustainability-v2-header {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.sustainability-v2-header .sustainability-section-label {
  justify-content: center;
}

.sustainability-v2-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sustainability-v2-steps article {
  position: relative;
  min-height: 260px;
  padding: 30px 24px;
  border: 1px solid rgba(58,183,20,0.24);
  border-radius: 50px 16px 50px 16px;
  background: linear-gradient(180deg, rgba(31,31,31,0.94), rgba(12,12,12,0.96));
  box-shadow: 0 16px 44px rgba(0,0,0,0.52);
}

.sustainability-v2-steps article::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3ab714, transparent);
  box-shadow: 0 0 18px rgba(58,183,20,0.5);
}

.sustainability-v2-steps span {
  display: block;
  margin-bottom: 22px;
  color: #3ab714;
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sustainability-v2-steps p {
  margin: 0;
  color: #cccccc;
  font-size: 0.96rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .sustainability-v2-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sustainability-section-v2 {
    padding: 64px 20px;
  }

  .sustainability-v2-header {
    text-align: left;
  }

  .sustainability-v2-header .sustainability-section-label {
    justify-content: flex-start;
  }

  .sustainability-v2-steps {
    grid-template-columns: 1fr;
  }

  .sustainability-v2-steps article {
    min-height: auto;
    border-radius: 22px;
  }
}

/* === gallery_v2.css === */
.gallery-section-v2 {
  background: #1e1e1e;
  background-image: linear-gradient(135deg, rgba(58,183,20,0.03) 0%, transparent 40%, transparent 60%, rgba(58,183,20,0.03) 100%);
  padding: 80px 48px;
  color: #ffffff;
  font-family: 'Barlow', 'Exo 2', sans-serif;
}

.gallery-section-v2 .gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-section-v2 .gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-section-v2 h2 {
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.gallery-section-v2 .gallery-intro {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.5;
  max-width: 750px;
  margin: 0 auto;
}

.gallery-section-v2 .showcase-strip {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.gallery-section-v2 .showcase-main {
  position: relative;
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.7);
}

.gallery-section-v2 .showcase-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.gallery-section-v2 .main-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.95));
  padding: 48px 32px 32px;
}

.gallery-section-v2 .main-caption h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #3ab714;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gallery-section-v2 .main-caption p {
  font-size: 0.95rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.gallery-section-v2 .showcase-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-section-v2 .thumb-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(42,42,42,0.6);
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-section-v2 .thumb-item:hover,
.gallery-section-v2 .thumb-item.active {
  border-color: #3ab714;
  background: rgba(58,183,20,0.1);
  box-shadow: 0 4px 20px rgba(58,183,20,0.2);
}

.gallery-section-v2 .thumb-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.gallery-section-v2 .thumb-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cccccc;
  line-height: 1.3;
}

.gallery-section-v2 .thumb-item.active span {
  color: #ffffff;
}

@media (max-width: 768px) {
  .gallery-section-v2 {
    padding: 60px 20px;
  }
  
  .gallery-section-v2 .showcase-strip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .gallery-section-v2 .showcase-main img {
    height: 320px;
  }
  
  .gallery-section-v2 .main-caption {
    padding: 32px 24px 24px;
  }
}

/* === cta_v2.css === */
.cta-section-v2 {
  background: linear-gradient(135deg, rgba(58,183,20,0.15) 0%, rgba(42,138,14,0.25) 100%), #111111;
  background-image: radial-gradient(circle at 70% 30%, rgba(58,183,20,0.1) 0%, transparent 50%);
  padding: 80px 48px;
  color: #ffffff;
  font-family: 'Barlow', 'Exo 2', sans-serif;
}

.cta-section-v2 .cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-section-v2 .cta-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-section-v2 h2 {
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 0 24px rgba(58,183,20,0.3);
}

.cta-section-v2 .cta-message p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0 0 40px 0;
}

.cta-section-v2 .message-highlights {
  display: flex;
  gap: 32px;
}

.cta-section-v2 .highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-section-v2 .highlight-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3ab714;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-section-v2 .highlight-desc {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.4;
}

.cta-section-v2 .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-section-v2 .contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(30,30,30,0.8);
  border-radius: 12px;
  border: 2px solid rgba(58,183,20,0.2);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.cta-section-v2 .contact-method:hover {
  border-color: #3ab714;
  background: rgba(58,183,20,0.1);
  box-shadow: 0 6px 24px rgba(58,183,20,0.3);
  transform: translateY(-2px);
}

.cta-section-v2 .contact-method.priority {
  border-color: #3ab714;
  box-shadow: 0 4px 20px rgba(58,183,20,0.4);
}

.cta-section-v2 .method-icon {
  font-size: 1.8rem;
  width: 48px;
  text-align: center;
}

.cta-section-v2 .method-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-section-v2 .method-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  color: #3ab714;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.cta-section-v2 .method-value {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

.cta-section-v2 .contact-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-section-v2 .trust-badge {
  padding: 12px 16px;
  background: rgba(58,183,20,0.15);
  border-radius: 6px;
  border: 1px solid rgba(58,183,20,0.3);
  text-align: center;
}

.cta-section-v2 .badge-text {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .cta-section-v2 {
    padding: 60px 20px;
  }
  
  .cta-section-v2 .cta-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-section-v2 .message-highlights {
    flex-direction: column;
    gap: 20px;
  }
}

/* === contact_variations.css === */
.contact-section-v1 {
  color: #ffffff;
  font-family: 'Barlow', 'Exo 2', sans-serif;
}

.contact-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #3ab714;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #3ab714;
  box-shadow: 0 0 14px rgba(58,183,20,0.75);
}

.contact-section-v1 {
  background: linear-gradient(135deg, rgba(58,183,20,0.13), rgba(10,10,10,0.94)), #111111;
  background-image: radial-gradient(circle at 78% 20%, rgba(58,183,20,0.14), transparent 36%);
  padding: 92px 48px;
}

.contact-v1-container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-v1-copy h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 0 24px rgba(58,183,20,0.18);
}

.contact-v1-copy p {
  margin: 0;
  color: #d0d0d0;
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-v1-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact-v1-highlights span {
  padding: 10px 14px;
  border: 1px solid rgba(58,183,20,0.28);
  border-radius: 999px;
  background: rgba(58,183,20,0.1);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-v1-methods {
  display: grid;
  gap: 18px;
}

.contact-v1-method {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  border: 1px solid rgba(58,183,20,0.25);
  border-radius: 16px;
  background: rgba(18,18,18,0.88);
  box-shadow: 0 16px 44px rgba(0,0,0,0.5);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-v1-method:hover {
  transform: translateY(-3px);
  border-color: rgba(58,183,20,0.58);
  box-shadow: 0 22px 54px rgba(0,0,0,0.62), 0 0 26px rgba(58,183,20,0.18);
}

.contact-v1-method--priority {
  border-color: #3ab714;
  box-shadow: 0 18px 54px rgba(0,0,0,0.55), 0 0 28px rgba(58,183,20,0.22);
}

.contact-v1-method-label {
  color: #3ab714;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-v1-method strong {
  color: #ffffff;
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.05;
}

.contact-v1-method em {
  color: #bfbfbf;
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .contact-v1-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-section-v1 {
    padding: 64px 20px;
  }
}

@media (max-width: 520px) {
  .contact-v1-highlights {
    flex-direction: column;
  }
}

/* === footer_v2.css === */
.footer-section-v2 {
  background: #0a0a0a;
  background-image: linear-gradient(45deg, rgba(58,183,20,0.02) 25%, transparent 25%), linear-gradient(-45deg, rgba(58,183,20,0.02) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(58,183,20,0.02) 75%), linear-gradient(-45deg, transparent 75%, rgba(58,183,20,0.02) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  color: #cccccc;
  font-family: 'Barlow', 'Exo 2', sans-serif;
  padding: 64px 48px 32px;
  text-align: center;
}

.footer-section-v2 .footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-section-v2 .footer-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-section-v2 .footer-header h3 {
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3ab714;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px 0;
  text-shadow: 0 0 20px rgba(58,183,20,0.6);
}

.footer-section-v2 .footer-tagline {
  font-size: 1rem;
  color: #cccccc;
  font-style: italic;
  margin: 0 0 0 0;
  line-height: 1.4;
}

.footer-section-v2 .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.footer-section-v2 .contact-method {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(30,30,30,0.6);
  border-radius: 8px;
  border: 1px solid rgba(58,183,20,0.15);
}

.footer-section-v2 .method-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-section-v2 .method-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-v2 a.method-value:hover {
  color: #3ab714;
  text-shadow: 0 0 8px rgba(58,183,20,0.6);
}

.footer-section-v2 .footer-links-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 600px;
  margin: 0 auto;
}

.footer-section-v2 .links-group h4 {
  font-family: 'Exo 2', 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px 0;
}

.footer-section-v2 .link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section-v2 .link-list a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.footer-section-v2 .link-list a:hover {
  color: #3ab714;
}

.footer-section-v2 .footer-legal {
  padding-top: 24px;
  border-top: 1px solid rgba(58,183,20,0.2);
}

.footer-section-v2 .footer-legal p {
  font-size: 0.85rem;
  color: #888888;
  margin: 0;
  line-height: 1.4;
}

.footer-section-v2 .footer-credit {
  margin-top: 8px;
}

.footer-section-v2 .footer-credit a {
  color: #3ab714;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-section-v2 .footer-credit a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(58,183,20,0.75);
}

.footer-section-v2 .footer-policy-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.footer-section-v2 .footer-policy-actions button {
  appearance: none;
  border: 1px solid rgba(58,183,20,0.32);
  border-radius: 999px;
  background: rgba(58,183,20,0.08);
  color: #cccccc;
  cursor: pointer;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 9px 16px;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.footer-section-v2 .footer-policy-actions button:hover {
  background: rgba(58,183,20,0.16);
  border-color: #3ab714;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(58,183,20,0.22);
}

.policy-modal-is-open {
  overflow: hidden;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  visibility: hidden;
}

.policy-modal--open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
}

.policy-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid rgba(58,183,20,0.34);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 0%, rgba(58,183,20,0.16), transparent 34%),
    linear-gradient(180deg, rgba(28,28,28,0.98), rgba(8,8,8,0.98));
  box-shadow: 0 28px 90px rgba(0,0,0,0.72), 0 0 42px rgba(58,183,20,0.14);
  color: #ffffff;
  padding: 34px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
}

.policy-modal--open .policy-modal__dialog {
  transform: translateY(0) scale(1);
}

.policy-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(58,183,20,0.38);
  border-radius: 50%;
  background: rgba(0,0,0,0.36);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.policy-modal__close:hover {
  border-color: #3ab714;
  color: #3ab714;
  box-shadow: 0 0 18px rgba(58,183,20,0.28);
}

.policy-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 48px 16px 0;
  color: #3ab714;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.policy-modal__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #3ab714;
  box-shadow: 0 0 14px rgba(58,183,20,0.75);
}

.policy-modal h2 {
  margin: 0 48px 20px 0;
  color: #ffffff;
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 0 24px rgba(58,183,20,0.18);
}

.policy-modal__content {
  display: grid;
  gap: 16px;
}

.policy-modal__content p {
  margin: 0;
  color: #d0d0d0;
  font-size: 1rem;
  line-height: 1.65;
}

.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 21000;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.cookie-consent--show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-consent__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(980px, 100%);
  border: 1px solid rgba(58,183,20,0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 0%, rgba(58,183,20,0.16), transparent 34%),
    linear-gradient(180deg, rgba(28,28,28,0.98), rgba(8,8,8,0.98));
  box-shadow: 0 24px 70px rgba(0,0,0,0.72), 0 0 36px rgba(58,183,20,0.16);
  color: #ffffff;
  padding: 22px;
}

.cookie-consent__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #3ab714;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cookie-consent__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #3ab714;
  box-shadow: 0 0 14px rgba(58,183,20,0.75);
}

.cookie-consent__copy p {
  margin: 0;
  color: #d0d0d0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.cookie-consent__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-consent__actions button {
  appearance: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  min-height: 42px;
  padding: 11px 20px;
  text-transform: uppercase;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.cookie-consent__accept {
  border: 1px solid #4CAF50;
  background: linear-gradient(180deg, #3cb043 0%, #2d8a2d 54%, #1e6b1e 100%);
  box-shadow: 0 0 20px rgba(58,183,20,0.3), inset 0 1px 0 rgba(255,255,255,0.18);
  color: #ffffff;
}

.cookie-consent__decline {
  border: 1px solid rgba(58,183,20,0.32);
  background: rgba(58,183,20,0.08);
  color: #cccccc;
}

.cookie-consent__actions button:hover {
  transform: translateY(-2px);
  border-color: #3ab714;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(58,183,20,0.28);
}

@media (max-width: 768px) {
  .footer-section-v2 {
    padding: 48px 20px 24px;
  }
  
  .footer-section-v2 .footer-content {
    gap: 32px;
  }
  
  .footer-section-v2 .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-section-v2 .footer-links-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .policy-modal {
    padding: 16px;
  }

  .policy-modal__dialog {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .policy-modal h2,
  .policy-modal__eyebrow {
    margin-right: 44px;
  }

  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-consent__panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
