:root {
  --bg-base: #0d0f0e;
  --bg-surface: #141917;
  --bg-card: #1a1f1c;
  --bg-card-hover: #1f2620;
  --bg-elevated: #212824;
  --accent-green: #39ff85;
  --accent-cyan: #00e5cc;
  --accent-dim: #1a4a32;
  --text-primary: #e8f0eb;
  --text-secondary: #9ab0a0;
  --text-muted: #5a7060;
  --border-subtle: #1e2a22;
  --border-glow: rgba(57, 255, 133, 0.25);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4), 0 0 0 1px rgba(57,255,133,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.5), 0 0 0 1px rgba(57,255,133,0.06), 0 1px 3px rgba(57,255,133,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6), 0 0 30px rgba(57,255,133,0.05), 0 2px 8px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 20px rgba(57,255,133,0.3), 0 0 60px rgba(57,255,133,0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-mono: 'Courier New', Courier, monospace;
  --font-head: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --hdr-h: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

body:has(.mob-menu.open) { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-green); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--accent-cyan); }
ul { list-style: none; padding: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.hdr {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1160px;
  z-index: 900;
  transition: top 0.3s ease, padding 0.3s ease, background 0.3s ease;
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(20, 25, 23, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 0.9rem 1.5rem;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(57,255,133,0.05);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hdr.scrolled .hdr-inner {
  padding: 0.6rem 1.5rem;
  background: rgba(13, 15, 14, 0.96);
  box-shadow: var(--shadow-lg);
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
  flex-shrink: 0;
  transition: opacity 0.25s;
}
.hdr-logo:hover { opacity: 0.8; color: var(--text-primary); }
.hdr-logo-img {
  width: 32px;
  height: 32px;
  transition: width 0.3s ease, height 0.3s ease;
}
.hdr.scrolled .hdr-logo-img { width: 26px; height: 26px; }
.hdr-logo-txt {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-green);
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.hdr-nav-lnk {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  letter-spacing: 0.02em;
}
.hdr-nav-lnk:hover,
.hdr-nav-lnk.active {
  color: var(--accent-green);
  background: rgba(57,255,133,0.07);
}

.hdr-cta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bg-base);
  background: var(--accent-green);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-md);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(57,255,133,0.3);
}
.hdr-cta:hover {
  background: var(--accent-cyan);
  color: var(--bg-base);
  box-shadow: 0 0 20px rgba(57,255,133,0.5);
  transform: translateY(-1px);
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent-green);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  clip-path: circle(0px at calc(100% - 2.5rem) 2.5rem);
  transition: clip-path 0.55s cubic-bezier(0.77,0,0.175,1);
  pointer-events: none;
}
.mob-menu.open {
  clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem);
  pointer-events: all;
}

.mob-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--accent-green);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.mob-menu-close:hover { background: var(--accent-dim); border-color: var(--accent-green); }

.mob-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
}
.mob-menu.open .mob-nav {
  opacity: 1;
  transform: translateY(0);
}

.mob-nav-lnk {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.6rem 2rem;
  border-radius: var(--radius-md);
  transition: color 0.25s, background 0.25s;
  text-align: center;
}
.mob-nav-lnk:hover { color: var(--accent-green); background: rgba(57,255,133,0.06); }

.mob-cta {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg-base);
  background: var(--accent-green);
  padding: 0.8rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  opacity: 0;
  transition: opacity 0.3s ease 0.4s, background 0.25s, transform 0.2s;
}
.mob-menu.open .mob-cta { opacity: 1; }
.mob-cta:hover { background: var(--accent-cyan); color: var(--bg-base); transform: translateY(-2px); }


.cookie-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar-txt {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  flex: 1;
  min-width: 200px;
}
.cookie-bar-txt a { color: var(--accent-green); }
.cookie-bar-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-cookie {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 34px;
}
.btn-cookie-accept {
  background: var(--accent-green);
  color: var(--bg-base);
  border-color: var(--accent-green);
  font-weight: 600;
}
.btn-cookie-accept:hover { background: var(--accent-cyan); border-color: var(--accent-cyan); }
.btn-cookie-necessary {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-subtle);
}
.btn-cookie-necessary:hover { border-color: var(--accent-green); color: var(--accent-green); }
.btn-cookie-settings {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn-cookie-settings:hover { color: var(--accent-green); }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 995;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cookie-modal.visible { opacity: 1; pointer-events: all; }
.cookie-modal-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.cookie-modal-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
}
.cookie-opt { margin-bottom: 1.2rem; }
.cookie-opt-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-primary);
  cursor: pointer;
}
.cookie-opt-label input[type="checkbox"] { accent-color: var(--accent-green); width: 16px; height: 16px; }
.cookie-opt-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.3rem; padding-left: 1.6rem; }
.cookie-modal-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--hdr-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.6);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,15,14,0.7) 0%, rgba(13,15,14,0.3) 50%, rgba(13,15,14,0.85) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,133,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,133,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-green);
  background: rgba(57,255,133,0.08);
  border: 1px solid rgba(57,255,133,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--accent-green); }
  50% { opacity: 0.4; box-shadow: 0 0 2px var(--accent-green); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero-clip {
  background-image: url('../images/mountain-trail-hero.jpg');
  background-size: cover;
  background-position: center 30%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: brightness(2.5) saturate(0.5) contrast(1.2);
  display: block;
}
.hero-clip--green {
  background-image: none;
  color: var(--accent-green);
  text-shadow: 0 0 60px rgba(57,255,133,0.4);
  filter: none;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-cursor-wrap {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.hero-cursor {
  animation: blink 1s step-end infinite;
  color: var(--accent-green);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-scroll-ind {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  animation: bounce 2.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(8px)}
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-base);
  background: var(--accent-green);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 0 15px rgba(57,255,133,0.25);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--accent-cyan);
  color: var(--bg-base);
  box-shadow: 0 0 25px rgba(57,255,133,0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  background: transparent;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  color: var(--accent-green);
  border-color: var(--accent-green);
  background: rgba(57,255,133,0.05);
  transform: translateY(-2px);
}


.sec {
  padding: var(--space-xl) 0;
}
.sec-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.sec-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 3rem;
}


.sec--intro { background: var(--bg-surface); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-txt { }
.intro-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.intro-img-wrap {
  position: relative;
}
.intro-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.intro-img-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 60%;
  height: 60%;
  border: 2px solid rgba(57,255,133,0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}


.sec--modules { background: var(--bg-base); }
.cascade-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}
.crd--cascade {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-left: 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.crd--cascade:nth-child(2) { margin-left: 2rem; }
.crd--cascade:nth-child(3) { margin-left: 4rem; }
.crd--cascade:nth-child(4) { margin-left: 6rem; }
.crd--cascade:not(:last-child) { margin-bottom: -1rem; }
.crd--cascade:hover {
  transform: translateX(-4px) translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(57,255,133,0.08);
  border-color: rgba(57,255,133,0.2);
  background: var(--bg-card-hover);
  z-index: 10;
}
.crd-ico {
  width: 60px;
  height: 60px;
  background: var(--accent-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-green);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(57,255,133,0.15);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.crd--cascade:hover .crd-ico {
  box-shadow: 0 0 20px rgba(57,255,133,0.3);
  background: #1e5a3a;
}
.crd-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.crd-txt p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


.sec--why { background: var(--bg-surface); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-crd {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.why-crd:hover {
  border-color: rgba(57,255,133,0.25);
  box-shadow: var(--shadow-md), 0 0 20px rgba(57,255,133,0.06);
  transform: translateY(-3px);
}
.why-ico {
  width: 50px;
  height: 50px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-green);
  margin-bottom: 1.25rem;
}
.why-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.why-body {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


.sec--gallery { background: var(--bg-base); }
.gal-swiper { margin-top: 2.5rem; padding-bottom: 3rem; }
.gal-slide {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gal-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gal-slide:hover .gal-img { transform: scale(1.04); }
.gal-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,15,14,0.85));
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 1.5rem 1rem 0.75rem;
  letter-spacing: 0.05em;
}
.swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.5;
  transition: background 0.25s, opacity 0.25s;
}
.swiper-pagination-bullet-active {
  background: var(--accent-green);
  opacity: 1;
  box-shadow: 0 0 8px rgba(57,255,133,0.5);
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-green);
  background: rgba(20,25,23,0.8);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: background 0.25s, border-color 0.25s;
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 0.8rem; }
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(57,255,133,0.1);
  border-color: var(--accent-green);
}


.sec--cta { background: var(--bg-base); padding: 5rem 0; }
.sec--cta-inner { background: var(--bg-surface); padding: 5rem 0; }
.cta-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(57,255,133,0.15);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(57,255,133,0.04);
  text-align: center;
}
.cta-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(57,255,133,0.015) 3px,
    rgba(57,255,133,0.015) 4px
  );
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}


.frm--inline {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.frm--contact { }
.frm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.frm-row--h { grid-template-columns: 1fr 1fr; }
.frm-row--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  grid-template-columns: unset;
  flex-wrap: wrap;
}
.frm-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.frm-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}
.frm-input {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  outline: none;
  resize: vertical;
}
.frm-input:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(57,255,133,0.1);
}
.frm-input::placeholder { color: var(--text-muted); }
.frm-textarea { min-height: 80px; }
.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}
.frm-check input[type="checkbox"] { accent-color: var(--accent-green); margin-top: 0.15rem; width: 16px; height: 16px; flex-shrink: 0; }
.frm-check a { color: var(--accent-green); }

.frm:has(:focus) { }
.frm:has(.frm-input:focus) .frm-input:not(:focus) { border-color: rgba(57,255,133,0.06); }


.pg-hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
}
.pg-hero--short { padding: 7rem 0 4rem; }
.pg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.18) saturate(0.5);
}
.pg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,15,14,0.5) 0%, rgba(13,15,14,0.7) 100%);
}
.pg-hero .container,
.pg-hero--short .container { position: relative; z-index: 2; }
.pg-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.pg-hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}


.sec--about-mission { background: var(--bg-surface); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mission-txt p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.mission-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}


.sec--modules-detail { background: var(--bg-base); }
.mod-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}
.mod-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}
.mod-item:last-child { border-bottom: none; padding-bottom: 0; }
.mod-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  letter-spacing: -0.03em;
  padding-top: 0.2rem;
}
.mod-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 1.2rem;
}
.mod-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.mod-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 1.2rem 0;
  aspect-ratio: 16/7;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}


.sec--team { background: var(--bg-surface); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.team-crd {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  box-shadow: var(--shadow-sm);
}
.team-crd:hover {
  border-color: rgba(57,255,133,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.team-ico {
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}
.team-crd h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.team-crd p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


.sec--steps { background: var(--bg-base); }
.steps-timeline {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: grid;
  grid-template-columns: 64px 2px 1fr;
  gap: 0 1.5rem;
  position: relative;
}
.step-num {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-green);
  background: var(--accent-dim);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  box-shadow: 0 0 12px rgba(57,255,133,0.2);
  margin-top: 0.2rem;
  justify-self: center;
}
.step-line {
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-green), rgba(57,255,133,0.1));
  justify-self: center;
  min-height: 100%;
}
.step-line--last { background: none; }
.step-body {
  padding-bottom: 3rem;
}
.step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.step-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-md);
  margin-top: 1.2rem;
  aspect-ratio: 16/7;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}


.sec--faq { background: var(--bg-surface); }
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: rgba(57,255,133,0.25); }
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.25s, color 0.25s;
}
.faq-q:hover { background: var(--bg-card-hover); color: var(--accent-green); }
.faq-q i {
  font-size: 0.75rem;
  color: var(--accent-green);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 1.5rem 1.2rem;
  background: var(--bg-card);
}


.sec--contact-main { background: var(--bg-surface); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.contact-ico {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-detail a { color: var(--text-secondary); }
.contact-detail a:hover { color: var(--accent-green); }


.sec--map { background: var(--bg-base); }
.map-transport-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: start;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}
.transport-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.transport-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.transport-item:last-child { border-bottom: none; }
.transport-ico {
  width: 38px;
  height: 38px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.transport-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.transport-item p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


.sec--thanks { background: var(--bg-base); min-height: calc(100vh - 200px); display: flex; align-items: center; }
.thanks-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}
.thanks-ico {
  font-size: 4rem;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(57,255,133,0.4));
}
.thanks-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.thanks-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}
.thanks-next {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
.thanks-next-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
}
.thanks-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.thanks-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.thanks-step-ico {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.thanks-step strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.thanks-step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


.sec--legal { background: var(--bg-base); }
.legal-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 3rem;
  border-left: 2px solid var(--border-subtle);
  margin-top: 2rem;
}
.lt-item {
  position: relative;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.lt-marker { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.lt-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent-green);
  letter-spacing: 0.05em;
  text-align: right;
  line-height: 1.4;
}
.lt-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-green);
  border-radius: 50%;
  position: absolute;
  left: -3.35rem;
  top: 0.3rem;
  box-shadow: 0 0 8px rgba(57,255,133,0.5);
}
.lt-body h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}
.lt-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.lt-body ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.5rem 0 0.8rem;
}
.lt-body li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.lt-body a { color: var(--accent-green); }
.lt-body strong { color: var(--text-primary); }


.sec--legal-terms { background: var(--bg-surface); }
.legal-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.legal-crd {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.legal-crd:hover { border-color: rgba(57,255,133,0.15); box-shadow: var(--shadow-md); }
.legal-crd-letter {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  padding-top: 0.2rem;
}
.legal-crd-body h2 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.legal-crd-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}


.sec--legal-cookies { background: var(--bg-base); }
.cookies-doc { margin-top: 2rem; }
.ck-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}
.ck-section:last-child { border-bottom: none; }
.ck-section h2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 1rem;
}
.ck-section p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.ck-section ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}
.ck-section li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.ck-section code {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  background: var(--bg-elevated);
  color: var(--accent-cyan);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}
.ck-section a { color: var(--accent-green); }
.ck-table {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 1rem;
}
.ck-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border-subtle);
}
.ck-row:last-child { border-bottom: none; }
.ck-row--head { background: var(--bg-elevated); }
.ck-cell {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.ck-row--head .ck-cell {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ck-row:not(.ck-row--head):nth-child(even) { background: rgba(255,255,255,0.01); }


.ftr {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}
.ftr-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.ftr-brand {}
.ftr-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
}
.ftr-logo:hover { color: var(--accent-green); }
.ftr-logo-img { width: 28px; height: 28px; }
.ftr-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.ftr-col-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ftr-lnk {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color 0.25s;
}
.ftr-lnk:hover { color: var(--accent-green); }
.ftr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.ftr-contact-item i { color: var(--accent-green); margin-top: 0.15rem; flex-shrink: 0; }
.ftr-contact-item a { color: var(--text-muted); }
.ftr-contact-item a:hover { color: var(--accent-green); }
.ftr-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ftr-bottom p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.ftr-domain {
  color: var(--accent-green) !important;
  opacity: 0.6;
}


@media (max-width: 1024px) {
  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }

  .intro-grid,
  .mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-img-wrap { order: -1; }

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

  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ftr-brand { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-transport-grid { grid-template-columns: 1fr; }

  .crd--cascade:nth-child(2) { margin-left: 1rem; }
  .crd--cascade:nth-child(3) { margin-left: 2rem; }
  .crd--cascade:nth-child(4) { margin-left: 3rem; }
}

@media (max-width: 768px) {
  :root { --space-xl: 4rem; --space-lg: 2.5rem; }

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

  .crd--cascade {
    grid-template-columns: 60px 1fr;
    padding: 1.5rem;
  }
  .crd--cascade:nth-child(2),
  .crd--cascade:nth-child(3),
  .crd--cascade:nth-child(4) { margin-left: 0; }

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

  .frm-row { grid-template-columns: 1fr; }
  .frm-row--h { grid-template-columns: 1fr; }
  .frm-row--bottom { flex-direction: column; align-items: stretch; }
  .frm-row--bottom .btn-primary { text-align: center; justify-content: center; }

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

  .mod-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .mod-num { font-size: 1.5rem; }

  .step-item { grid-template-columns: 44px 2px 1fr; gap: 0 1rem; }

  .cta-box { padding: 2rem 1.5rem; }

  .lt-item { grid-template-columns: 60px 1fr; gap: 1rem; }

  .legal-crd { grid-template-columns: 40px 1fr; }

  .ck-row { grid-template-columns: 1fr 1fr; }
  .ck-row .ck-cell:nth-child(3),
  .ck-row .ck-cell:nth-child(4) { display: none; }
  .ck-row--head .ck-cell:nth-child(3),
  .ck-row--head .ck-cell:nth-child(4) { display: none; }

  .map-transport-grid { grid-template-columns: 1fr; }

  .thanks-box { padding: 2rem 1rem; }

  .pg-hero { padding: 7rem 0 3rem; }
  .pg-hero--short { padding: 6rem 0 2.5rem; }

  .hdr { top: 0.5rem; width: calc(100% - 1rem); }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.5rem, 16vw, 4rem); }
  .sec-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .crd--cascade { grid-template-columns: 1fr; }
  .crd-ico { margin-bottom: 0.5rem; }
  .lt-item { grid-template-columns: 1fr; padding-left: 1.5rem; }
  .lt-marker { flex-direction: row; align-items: center; margin-bottom: 0.5rem; }
  .lt-date { text-align: left; }
  .lt-dot { left: -1.85rem; }
  .legal-cards .legal-crd { grid-template-columns: 1fr; }
  .legal-crd-letter { font-size: 1.2rem; }
  .cookie-bar { flex-direction: column; align-items: flex-start; }
  .cookie-bar-actions { width: 100%; justify-content: flex-start; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { text-align: center; justify-content: center; }
}