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

:root {
  --green: #05AA3D;
  --green-dark: #048a32;
  --green-pale: #e8f8ed;
  --orange: #FF8A00;
  --ink: #1a1a1a;
  --ink-mid: #3d3d3d;
  --muted: #6e7b6f;
  --bg: #fff;
  --bg-warm: #faf9f6;
  --border: #e2ede5;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow .3s
}

nav.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, .07)
}

/* Animated logo */
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-logo img {
  height: 38px;
  width: auto;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.nav-logo:hover img {
  transform: scale(1.1) rotate(-5deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none
}

.nav-links a {
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all .18s;
  position: relative
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s
}

.nav-links a:not(.nav-cta):hover {
  color: var(--green);
  background: var(--green-pale)
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1)
}

.nav-active {
  color: var(--green) !important;
  font-weight: 700 !important
}

.nav-cta {
  background: var(--green-pale) !important;
  color: var(--green-dark) !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  padding: 10px 22px !important;
  border: 1.5px solid rgba(5, 170, 61, .25) !important;
  transition: all .2s !important
}

.nav-cta:hover {
  background: var(--green) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
  border-color: var(--green) !important
}

.nav-vp {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  padding: 10px 22px !important;
  box-shadow: 0 4px 16px rgba(255, 138, 0, .3);
  transition: all .2s !important
}

.nav-vp:hover {
  background: #e07a00 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 7px 22px rgba(255, 138, 0, .42) !important
}

/* LANGUAGE PICKER */
.lang-picker {
  position: relative;
  display: flex;
  align-items: center
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  transition: all .18s;
  user-select: none
}

.lang-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale)
}

.lang-btn .lang-flag {
  font-size: 16px
}

.lang-btn .lang-arrow {
  font-size: 10px;
  opacity: .5;
  transition: transform .2s
}

.lang-picker.open .lang-arrow {
  transform: rotate(180deg)
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  min-width: 160px;
  padding: 6px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}

.lang-picker.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none
}

.lang-option:hover {
  background: var(--green-pale);
  color: var(--green)
}

.lang-option.active {
  color: var(--green);
  font-weight: 700;
  background: var(--green-pale)
}

.lang-option .lo-flag {
  font-size: 18px
}

.lang-option .lo-name {
  flex: 1
}

.lang-option .lo-check {
  color: var(--green);
  font-size: 12px;
  opacity: 0
}

.lang-option.active .lo-check {
  opacity: 1
}

/* ═══════════════════════════════
   SEKCIJA 1 — MISIJA / HERO
═══════════════════════════════ */
.s1 {
  padding: 140px 72px 100px;
  background: var(--ink);
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.s1::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 170, 61, .09) 0%, transparent 65%);
  pointer-events: none;
}

.s1-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--orange);
  margin-bottom: 18px;
}

.s1-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 0;
}

.s1-title em {
  color: var(--green);
  font-style: italic
}

.s1-right {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.s1-lead {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .55);
  border-left: 3px solid var(--green);
  padding-left: 20px;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.s1-lead em {
  color: #fff;
  font-style: normal;
  font-weight: 600
}

.s1-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .45)
}

.s1-body strong {
  color: rgba(255, 255, 255, .8)
}

/* traits strip */
.traits {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
}

.trait {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s;
}

.trait:last-child {
  border-bottom: none
}

.trait:hover {
  background: rgba(5, 170, 61, .07)
}

.trait-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(5, 170, 61, .12);
  border: 1px solid rgba(5, 170, 61, .2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trait-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff
}

.trait-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .38);
  margin-top: 2px
}

/* ═══════════════════════════════
   SEKCIJA 2 — VIZIJA / KRUG
═══════════════════════════════ */
.s2 {
  padding: 100px 72px;
  background: var(--bg-warm);
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 80px;
  align-items: center;
}

.s2-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--orange);
  margin-bottom: 18px;
  display: block;
}

.s2-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}

.s2-title em {
  color: var(--green);
  font-style: italic
}

.s2-body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px
}

.s2-body p:last-child {
  margin-bottom: 0
}

.s2-body p strong {
  color: var(--ink)
}

/* circular loop visual */
.loop-wrap {
  background: var(--ink);
  border-radius: 24px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.loop-wrap::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 170, 61, .08) 0%, transparent 65%);
}

.loop-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .06em;
  text-align: center;
  margin-bottom: 36px;
  text-transform: uppercase;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.loop-nodes {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.lnode {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.lnode:last-child {
  border-bottom: none
}

.lnode-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(5, 170, 61, .14);
  border: 1px solid rgba(5, 170, 61, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.lnode-text {
  flex: 1
}

.lnode-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff
}

.lnode-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .35);
  margin-top: 2px
}

.lnode-tag {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(5, 170, 61, .15);
  color: var(--green);
  border: 1px solid rgba(5, 170, 61, .2);
}

.loop-return {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .12em;
  position: relative;
  z-index: 1;
}

.loop-return::before, .loop-return::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(5, 170, 61, .2)
}

/* ── CTA ── */
.cta-band {
  padding: 72px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 480px;
}

.cta-band h3 em {
  font-style: italic;
  opacity: .85
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all .22s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .1)
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .16)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .4);
  transition: all .22s
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  transform: translateY(-2px)
}

/* ── FOOTER ── */
footer {
  background: #0f1f12;
  padding: 64px 72px 0
}

.footer-grid {
  display: grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.footer-logo-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px
}

.footer-logo-img {
  height: 38px
}

.footer-tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.6;
  max-width: 220px;
  margin-bottom: 20px
}

.footer-certs-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.cert-ph {
  width: 54px;
  height: 54px;
  border-radius: 11px;
  border: 1.5px dashed rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .25);
  gap: 3px;
  transition: all .2s
}

.cert-ph:hover {
  border-color: var(--green);
  color: var(--green)
}

.cert-ph span {
  font-size: 20px
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .28);
  margin-bottom: 16px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--green)
}

.footer-eu-box {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  overflow: hidden
}

.footer-eu-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #003399, #FFCC00)
}

.footer-eu-icon {
  font-size: 20px;
  margin-bottom: 10px
}

.footer-eu-box p {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .2s
}

.footer-contact-item a:hover {
  color: var(--green)
}

.fci-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin: 0 -72px
}

.footer-bottom {
  padding: 20px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .2)
}

#spot {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 170, 61, .04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s
}

.burger-menu {
  display: none;
}

@media (max-width: 960px) {
  nav {
    padding: 0 20px
  }

  .nav-links-container {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 20px;
  }

  .nav-links-container.open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links li {
    margin-bottom: 10px;
  }

  .burger-menu {
    display: block;
    cursor: pointer;
  }

  .burger-bar {
    width: 25px;
    height: 3px;
    background-color: var(--ink);
    margin: 5px 0;
    transition: 0.4s;
  }

  .burger-menu.open .burger-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger-menu.open .burger-bar:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.open .burger-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .s1, .s2 {
    grid-template-columns:1fr;
    gap: 48px;
    padding: 100px 28px 64px
  }

  .s2 {
    padding-top: 64px
  }

  .cta-band {
    padding: 48px 28px;
    flex-direction: column;
    align-items: flex-start
  }

  footer {
    padding: 48px 28px 0
  }

  .footer-grid {
    grid-template-columns:1fr
  }

  .footer-divider {
    margin: 0 -28px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }
}
