/* Базовий CSS reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  text-rendering: optimizeSpeed;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ----------- */

:root {
  --color-accent: #3a8f5e;
  --color-accent-light: #e5f6ff;
  --color-bg: #181f2a;
  --color-white: #ffffff;
  --color-yellow: #e7a512;
  --color-muted: #a0aec0;
  --font-main: 'Manrope', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

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

body {
  font-family: var(--font-main);
  background: linear-gradient(120deg, var(--color-bg) 60%, var(--color-accent-light) 100%);
  color: var(--color-white);
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  transition: background 0.5s;
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: var(--color-yellow);
}

::-webkit-scrollbar {
  width: 10px;
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 6px;
}

@media (max-width: 600px) {
  html { font-size: 15px; }
  body { padding: 0 0.5rem; }
}
.header {
  width: 100%;
  background: rgba(24, 31, 42, 0.92);
  box-shadow: 0 2px 16px rgba(34, 68, 54, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  animation: header-fadein 0.9s cubic-bezier(.9, .05, .24, 1.09) 1;
}
@keyframes header-fadein {
  from { opacity: 0; transform: translateY(-24px);}
  to { opacity: 1; transform: translateY(0);}
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-decoration: none;
  gap: 0.7rem;
  transition: color 0.2s;
}
.header__logo:hover .header__logo-badge {
  background: var(--color-yellow);
  color: var(--color-bg);
}

.header__logo-badge {
  font-size: 0.9rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 0.7em;
  padding: 0.17em 0.7em;
  margin-left: 0.35em;
  font-family: var(--font-main);
  transition: background 0.25s, color 0.25s;
}
.header__logo-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.header__nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}
.header__nav-link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 1.06rem;
  color: var(--color-white);
  text-decoration: none;
  padding: 0.28em 0.65em;
  border-radius: 8px;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s;
  outline: none;
}

.header__nav-link:hover,
.header__nav-link:focus {
  background: rgba(58, 143, 94, 0.11);
  color: var(--color-yellow);
}
.header__nav-link:hover::after,
.header__nav-link:focus::after {
  width: 90%;
  left: 5%;
}

.header__nav-link--button {
  background: var(--color-accent);
  color: var(--color-bg);
  border-radius: 1.5em;
  font-weight: 700;
  margin-left: 0.5em;
  transition: background 0.22s, color 0.22s;
  box-shadow: 0 2px 8px 0 rgba(56, 175, 103, 0.17);
}
.header__nav-link--button:hover,
.header__nav-link--button:focus {
  background: var(--color-yellow);
  color: var(--color-bg);
}

/* Burger для мобільних */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}
.header__burger span {
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  display: block;
  transition: all 0.32s;
}

/* Мобільна адаптація */
@media (max-width: 900px) {
  .header__nav-list {
    gap: 0.45rem;
    font-size: 1rem;
  }
  .header__container {
    padding: 0.4rem 0.7rem;
  }
}

@media (max-width: 700px) {
  .header__nav {
    position: absolute;
    top: 70px; right: 0; left: 0;
    background: rgba(24, 31, 42, 0.98);
    box-shadow: 0 4px 18px 0 rgba(34,68,54,0.10);
    display: none;
    flex-direction: column;
    align-items: flex-end;
    padding: 1.3rem 1.5rem;
    z-index: 120;
  }
  .header__nav.header__nav--open {
    display: flex;
  }
  .header__nav-list {
    flex-direction: column;
    gap: 1.1rem;
    width: 100%;
  }
  .header__burger {
    display: flex;
  }
}

/* Додаємо плавність */
.header, .header__nav-link, .header__logo, .header__logo-badge {
  will-change: background, color, opacity, box-shadow;
}
.footer {
  background: #1c2332;
  color: var(--color-white);
  padding: 3rem 0 1.1rem 0;
  font-size: 1rem;
  border-top: 1.5px solid rgba(58,143,94,0.08);
  box-shadow: 0 -2px 12px 0 rgba(58,143,94,0.06);
  margin-top: 2rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
  gap: 2.5rem;
  align-items: start;
  padding: 0 1.5rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}
.footer__logo-badge {
  font-size: 0.83rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 0.8em;
  padding: 0.13em 0.6em;
  margin-left: 0.3em;
  font-family: var(--font-main);
  transition: background 0.23s, color 0.23s;
}

.footer__logo-icon {
  width: 1.4em;
  height: 1.4em;
  display: inline-flex;
  vertical-align: middle;
}

.footer__copyright {
  margin-top: 0.8em;
  font-size: 0.98rem;
  color: var(--color-muted);
}

.footer__title {
  font-size: 1.07rem;
  font-family: var(--font-mono);
  color: var(--color-accent);
  margin-bottom: 0.7em;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer__nav-list,
.footer__info-list,
.footer__contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-link,
.footer__info-list a {
  display: inline-block;
  color: var(--color-white);
  text-decoration: none;
  padding: 0.1em 0;
  margin-bottom: 0.12em;
  font-size: 1rem;
  transition: color 0.19s;
}
.footer__nav-link:hover,
.footer__info-list a:hover {
  color: var(--color-yellow);
}

.footer__contacts-list li {
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: 0.75em;
  font-size: 1rem;
  word-break: break-all;
}
.footer__contact-icon {
  display: inline-flex;
  width: 1.13em;
  height: 1.13em;
  margin-right: 0.1em;
  color: var(--color-accent);
}

.footer__contacts-list a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.19s;
}
.footer__contacts-list a:hover {
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 2rem 0 1rem 0;
  }
  .footer__container {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 0 0.6rem;
  }
  .footer__col { margin-bottom: 1.2em; }
}

.hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4.5rem 0 2.7rem 0;
}
.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.7rem;
  position: relative;
  z-index: 2;
}
.hero__content {
  flex: 1.3;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.hero__title {
  font-size: 2.7rem;
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 0.2em;
  opacity: 0;
  transform: translateY(35px);
  animation: fade-in-up 1.1s cubic-bezier(.82,.02,.42,.97) 0.1s forwards;
}
.hero__title-accent {
  color: var(--color-yellow);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
.hero__desc {
  font-size: 1.24rem;
  color: var(--color-accent-light);
  margin-bottom: 0.5em;
  max-width: 540px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 1.1s cubic-bezier(.82,.02,.42,.97) 0.27s forwards;
}
@keyframes fade-in-up {
  to { opacity: 1; transform: none; }
}
.hero__chips {
  display: flex;
  gap: 1.1em;
  flex-wrap: wrap;
  margin-bottom: 0.9em;
}
.hero__chip {
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.98rem;
  border-radius: 1.6em;
  padding: 0.22em 1.1em 0.22em 0.7em;
  display: flex;
  align-items: center;
  gap: 0.4em;
  box-shadow: 0 2px 6px 0 rgba(58,143,94,0.07);
  opacity: 0;
  transform: translateY(24px) scale(0.94);
  animation: fade-in-up 1.09s cubic-bezier(.82,.02,.42,.97) 0.5s forwards;
}
.hero__chip:nth-child(2) { animation-delay: 0.62s; }
.hero__chip:nth-child(3) { animation-delay: 0.74s; }
.hero__chip:nth-child(4) { animation-delay: 0.86s; }
.hero__btn {
  background: var(--color-yellow);
  color: var(--color-bg);
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 2em;
  padding: 0.87em 2.5em;
  text-decoration: none;
  margin-top: 0.7em;
  box-shadow: 0 3px 18px 0 rgba(231, 165, 18, 0.10);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.hero__btn:hover, .hero__btn:focus {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 18px 0 rgba(58,143,94,0.14);
}

.hero__art {
  flex: 1;
  min-width: 290px;
  max-width: 370px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fade-in-up 1.15s cubic-bezier(.82,.02,.42,.97) 0.9s forwards;
  opacity: 0;
  transform: translateY(36px);
}
.hero__img {
  width: 100%;
  max-width: 340px;
  border-radius: 1.6em;
  box-shadow: 0 6px 24px 0 rgba(24,31,42,0.15);
  margin-bottom: 0.8em;
  background: var(--color-accent-light);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.hero__art-badge {
  position: absolute;
  left: 1.1em;
  bottom: 0.8em;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 0.7em;
  padding: 0.29em 1.1em;
  font-family: var(--font-mono);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(24,31,42,0.12);
  opacity: 0.92;
}

.hero__bg-bubbles {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 950px) {
  .hero__container { flex-direction: column; align-items: flex-start; gap: 2.2rem;}
  .hero__art { align-self: center; }
}
@media (max-width: 600px) {
  .hero { padding: 2.4rem 0 1rem 0;}
  .hero__container { padding: 0 0.1rem;}
  .hero__title { font-size: 2rem;}
}
.about {
  background: linear-gradient(120deg, rgba(58,143,94,0.10) 15%, transparent 100%);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 2;
}
.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 0 1.3rem;
  flex-wrap: wrap;
}
.about__info {
  flex: 1.1;
  min-width: 290px;
  margin-bottom: 2rem;
  animation: fade-in-up 1s cubic-bezier(.84,.01,.41,.96) 0.12s backwards;
}
.about__title {
  font-size: 2.05rem;
  color: var(--color-accent);
  font-family: var(--font-mono);
  margin-bottom: 0.5em;
}
.about__desc {
  font-size: 1.14rem;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 1.5em;
}
.about__btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 2em;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 0.68em 2.1em;
  text-decoration: none;
  box-shadow: 0 3px 18px 0 rgba(58,143,94,0.09);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  margin-top: 0.2em;
}
.about__btn:hover, .about__btn:focus {
  background: var(--color-yellow);
  color: var(--color-bg);
  box-shadow: 0 6px 28px 0 rgba(231, 165, 18, 0.10);
}
.about__facts {
  flex: 1.2;
  min-width: 320px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.5rem;
  align-items: stretch;
  justify-content: flex-start;
  animation: fade-in-up 1s cubic-bezier(.84,.01,.41,.96) 0.35s backwards;
}
.about__fact {
  background: rgba(24, 31, 42, 0.93);
  border-radius: 1.2em;
  box-shadow: 0 3px 16px 0 rgba(58,143,94,0.07);
  min-width: 138px;
  flex: 1 1 150px;
  padding: 1.1em 1.25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.42em;
  margin-bottom: 0.6em;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  animation: fade-in-up 1.04s cubic-bezier(.84,.01,.41,.96) forwards;
}
.about__fact:nth-child(2) { animation-delay: 0.14s; }
.about__fact:nth-child(3) { animation-delay: 0.28s; }
.about__fact:nth-child(4) { animation-delay: 0.42s; }
.about__fact:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(58,143,94,0.14);
}
.about__fact-icon {
  font-size: 2.2rem;
  color: var(--color-yellow);
  margin-bottom: 0.18em;
  display: inline-flex;
}
.about__fact-num {
  font-size: 1.31rem;
  font-family: var(--font-mono);
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.14em;
}
.about__fact-label {
  font-size: 1.02rem;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .about__container { flex-direction: column; gap: 1.7rem; }
  .about__facts { justify-content: stretch;}
}
@media (max-width: 600px) {
  .about { padding: 2.3rem 0 1.3rem 0;}
  .about__container { padding: 0 0.4rem;}
}
.stories {
  background: linear-gradient(100deg, rgba(231,165,18,0.12) 0%, transparent 100%);
  padding: 4rem 0 3rem 0;
}
.stories__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.3rem;
}
.stories__title {
  font-size: 1.7rem;
  font-family: var(--font-mono);
  color: var(--color-yellow);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
  animation: fade-in-up 1s cubic-bezier(.84,.01,.41,.96) 0.1s backwards;
}
.stories__title [data-lucide] {
  font-size: 2rem;
  color: var(--color-accent);
}

.stories__grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 2.5rem;
  animation: fade-in-up 1.04s cubic-bezier(.84,.01,.41,.96) 0.18s backwards;
}
.story-card {
  background: #232d3e;
  border-radius: 1.2em;
  box-shadow: 0 4px 20px 0 rgba(58,143,94,0.10);
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 320px;
  display: flex;
  gap: 1.1em;
  padding: 1.1em 1em 1.3em 1em;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  animation: fade-in-up 1.1s cubic-bezier(.84,.01,.41,.96) forwards;
}
.story-card:nth-child(2) { animation-delay: 0.13s;}
.story-card:nth-child(3) { animation-delay: 0.27s;}
.story-card:hover {
  transform: translateY(-8px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 10px 34px 0 rgba(231,165,18,0.15);
}
.story-card__avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-accent-light);
  border: 2.5px solid var(--color-accent);
  margin-top: 0.5em;
}
.story-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.story-card__author {
  font-size: 1.03rem;
  color: var(--color-accent);
  font-family: var(--font-mono);
  margin-bottom: 0.14em;
}
.story-card__title {
  font-size: 1.13rem;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 0.17em;
}
.story-card__desc {
  font-size: 0.99rem;
  color: var(--color-muted);
  margin-bottom: 0.25em;
  line-height: 1.35;
}
.story-card__link {
  font-size: 0.98rem;
  color: var(--color-yellow);
  font-family: var(--font-mono);
  text-decoration: underline;
  margin-top: 0.17em;
  transition: color 0.18s;
}
.story-card__link:hover {
  color: var(--color-accent);
}

.stories__btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 2em;
  font-size: 1.09rem;
  font-weight: 700;
  padding: 0.68em 2.1em;
  text-decoration: none;
  box-shadow: 0 3px 18px 0 rgba(58,143,94,0.09);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  margin-top: 0.6em;
}
.stories__btn:hover, .stories__btn:focus {
  background: var(--color-yellow);
  color: var(--color-bg);
  box-shadow: 0 6px 28px 0 rgba(231, 165, 18, 0.10);
}

@media (max-width: 900px) {
  .stories__grid { flex-direction: column; gap: 1.5rem;}
  .story-card { max-width: 100%; }
}
@media (max-width: 600px) {
  .stories { padding: 2.2rem 0 1.3rem 0;}
  .stories__container { padding: 0 0.3rem;}
}
.skills {
  background: linear-gradient(90deg, rgba(58,143,94,0.10) 10%, transparent 100%);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 2;
}
.skills__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.3rem;
}
.skills__title {
  font-size: 1.7rem;
  font-family: var(--font-mono);
  color: var(--color-accent);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
  animation: fade-in-up 1s cubic-bezier(.84,.01,.41,.96) 0.1s backwards;
}
.skills__title [data-lucide] {
  font-size: 2rem;
  color: var(--color-yellow);
}
.skills__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
  gap: 1.5rem 2.3rem;
  margin-bottom: 2.7rem;
  animation: fade-in-up 1.04s cubic-bezier(.84,.01,.41,.96) 0.16s backwards;
}
.skills__card {
  background: #232d3e;
  border-radius: 1.1em;
  box-shadow: 0 3px 18px 0 rgba(58,143,94,0.07);
  min-height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7em;
  justify-content: center;
  padding: 1.1em 0.3em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  animation: fade-in-up 1.07s cubic-bezier(.84,.01,.41,.96) forwards;
}
.skills__card:hover {
  transform: translateY(-8px) scale(1.06) rotate(1.5deg);
  box-shadow: 0 10px 34px 0 rgba(58,143,94,0.13);
  background: #1c2332;
}
.skills__icon {
  font-size: 2.25rem;
  color: var(--color-yellow);
  margin-bottom: 0.11em;
  display: inline-flex;
}
.skills__label {
  font-size: 1.05rem;
  color: var(--color-white);
  font-family: var(--font-mono);
  font-weight: 700;
}

.skills__btn {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-bg);
  border-radius: 2em;
  font-size: 1.09rem;
  font-weight: 700;
  padding: 0.68em 2.1em;
  text-decoration: none;
  box-shadow: 0 3px 18px 0 rgba(58,143,94,0.09);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  margin-top: 0.6em;
}
.skills__btn:hover, .skills__btn:focus {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 6px 28px 0 rgba(58,143,94,0.10);
}

@media (max-width: 900px) {
  .skills__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .skills { padding: 2.2rem 0 1.3rem 0;}
  .skills__container { padding: 0 0.3rem;}
  .skills__grid { grid-template-columns: 1fr; }
}
.office {
  background: linear-gradient(120deg, rgba(231,165,18,0.09) 10%, transparent 90%);
  padding: 4rem 0 3rem 0;
  position: relative;
}
.office__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.3rem;
  display: flex;
  align-items: stretch;
  gap: 2.8rem;
  flex-wrap: wrap;
}
.office__content {
  flex: 1.3;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.3em;
  animation: fade-in-up 1s cubic-bezier(.84,.01,.41,.96) 0.11s backwards;
}
.office__title {
  font-size: 1.7rem;
  font-family: var(--font-mono);
  color: var(--color-accent);
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.office__title [data-lucide] { font-size: 2rem; color: var(--color-yellow);}
.office__desc {
  font-size: 1.13rem;
  color: var(--color-white);
  margin-bottom: 0.5em;
  line-height: 1.55;
}
.office__features {
  list-style: none;
  margin: 0 0 1.7em 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.office__features li {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-size: 1.03rem;
  color: var(--color-accent-light);
  background: rgba(58,143,94,0.06);
  border-radius: 0.7em;
  padding: 0.36em 1em;
  transition: background 0.19s;
  cursor: pointer;
}
.office__features li:hover {
  background: rgba(231,165,18,0.10);
}
.office__icon {
  font-size: 1.36rem;
  color: var(--color-yellow);
  display: inline-flex;
}

.office__btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 2em;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 0.67em 2em;
  text-decoration: none;
  box-shadow: 0 3px 18px 0 rgba(58,143,94,0.09);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  margin-top: 0.4em;
}
.office__btn:hover, .office__btn:focus {
  background: var(--color-yellow);
  color: var(--color-bg);
  box-shadow: 0 6px 28px 0 rgba(231, 165, 18, 0.10);
}
.office__visual {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fade-in-up 1.1s cubic-bezier(.84,.01,.41,.96) 0.25s backwards;
}
.office__img-wrap {
  position: relative;
  max-width: 340px;
  width: 100%;
}
.office__img {
  width: 100%;
  border-radius: 1.2em;
  box-shadow: 0 4px 20px 0 rgba(24,31,42,0.12);
  background: var(--color-accent-light);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.office__badge {
  position: absolute;
  left: 1.1em;
  bottom: 0.7em;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 0.7em;
  padding: 0.29em 1.1em;
  font-family: var(--font-mono);
  font-size: 0.99rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(24,31,42,0.12);
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.office__badge [data-lucide] { font-size: 1.15em; color: #fff;}
@media (max-width: 900px) {
  .office__container { flex-direction: column; gap: 1.5rem;}
  .office__visual { align-self: center;}
}
@media (max-width: 600px) {
  .office { padding: 2.1rem 0 1.1rem 0;}
  .office__container { padding: 0 0.3rem;}
  .office__img-wrap { max-width: 100%;}
}
.career {
  background: linear-gradient(90deg, rgba(58,143,94,0.08) 15%, transparent 100%);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 2;
}
.career__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.3rem;
}
.career__title {
  font-size: 1.7rem;
  font-family: var(--font-mono);
  color: var(--color-yellow);
  margin-bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
  animation: fade-in-up 1s cubic-bezier(.84,.01,.41,.96) 0.1s backwards;
}
.career__title [data-lucide] {
  font-size: 2rem;
  color: var(--color-accent);
}
.career__content {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.career__facts {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.career__fact {
  background: #232d3e;
  border-radius: 1.1em;
  box-shadow: 0 3px 14px 0 rgba(58,143,94,0.07);
  padding: 1.3em 1.1em 1.2em 1.1em;
  display: flex;
  align-items: flex-start;
  gap: 1em;
  transition: box-shadow 0.2s, transform 0.18s;
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  animation: fade-in-up 1.1s cubic-bezier(.84,.01,.41,.96) forwards;
  cursor: pointer;
}
.career__fact:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 36px 0 rgba(231,165,18,0.12);
}
.career__fact-icon {
  font-size: 2.1rem;
  color: var(--color-accent);
  margin-top: 0.17em;
  flex-shrink: 0;
}
.career__fact-label {
  font-size: 1.11rem;
  color: var(--color-yellow);
  font-weight: 700;
  margin-bottom: 0.19em;
  font-family: var(--font-mono);
}
.career__fact-desc {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.12em;
  line-height: 1.35;
}

.career__side {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  align-items: flex-start;
}
.career__quote {
  background: rgba(231,165,18,0.13);
  border-radius: 1.1em;
  box-shadow: 0 3px 18px 0 rgba(231,165,18,0.06);
  padding: 1.1em 1.4em;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  align-items: flex-start;
  margin-bottom: 0.7em;
}
.career__quote-icon {
  font-size: 2.1rem;
  color: var(--color-yellow);
  opacity: 0.5;
}
.career__quote-text {
  font-size: 1.08rem;
  color: var(--color-accent);
  font-family: var(--font-mono);
}
.career__quote-author {
  font-size: 0.98rem;
  color: var(--color-muted);
  font-style: italic;
}
.career__btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 2em;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 0.67em 2em;
  text-decoration: none;
  box-shadow: 0 3px 18px 0 rgba(58,143,94,0.09);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
}
.career__btn:hover, .career__btn:focus {
  background: var(--color-yellow);
  color: var(--color-bg);
  box-shadow: 0 6px 28px 0 rgba(231, 165, 18, 0.10);
}
@media (max-width: 900px) {
  .career__content { flex-direction: column; gap: 2.3rem;}
}
@media (max-width: 600px) {
  .career { padding: 2.1rem 0 1.1rem 0;}
  .career__container { padding: 0 0.3rem;}
}
.tips {
  background: linear-gradient(100deg, rgba(58,143,94,0.08) 12%, transparent 100%);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 2;
}
.tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.3rem;
}
.tips__title {
  font-size: 1.7rem;
  font-family: var(--font-mono);
  color: var(--color-accent);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
  animation: fade-in-up 1s cubic-bezier(.84,.01,.41,.96) 0.1s backwards;
}
.tips__title [data-lucide] {
  font-size: 2rem;
  color: var(--color-yellow);
}
.tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem 2rem;
  margin-bottom: 2.7rem;
  animation: fade-in-up 1.04s cubic-bezier(.84,.01,.41,.96) 0.16s backwards;
}
.tips__item {
  background: #232d3e;
  border-radius: 1.1em;
  box-shadow: 0 3px 14px 0 rgba(58,143,94,0.06);
  display: flex;
  align-items: flex-start;
  gap: 1.1em;
  padding: 1.2em 1em;
  transition: transform 0.19s, box-shadow 0.2s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  animation: fade-in-up 1.07s cubic-bezier(.84,.01,.41,.96) forwards;
}
.tips__item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 28px 0 rgba(231,165,18,0.13);
  background: #1c2332;
}
.tips__icon {
  font-size: 2.2rem;
  color: var(--color-yellow);
  margin-top: 0.1em;
  flex-shrink: 0;
}
.tips__content {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}
.tips__label {
  font-size: 1.08rem;
  color: var(--color-accent);
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 0.15em;
}
.tips__desc {
  font-size: 0.99rem;
  color: var(--color-white);
  line-height: 1.38;
}
.tips__btn {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-bg);
  border-radius: 2em;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 0.65em 2em;
  text-decoration: none;
  box-shadow: 0 3px 18px 0 rgba(58,143,94,0.09);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  margin-top: 0.5em;
}
.tips__btn:hover, .tips__btn:focus {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 6px 28px 0 rgba(58,143,94,0.10);
}

@media (max-width: 700px) {
  .tips { padding: 2.1rem 0 1.2rem 0;}
  .tips__container { padding: 0 0.3rem;}
  .tips__grid { grid-template-columns: 1fr; }
}
.contact {
  background: linear-gradient(100deg, rgba(231,165,18,0.10) 0%, transparent 100%);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 2;
}
.contact__container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.contact__title {
  font-size: 1.7rem;
  font-family: var(--font-mono);
  color: var(--color-accent);
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
  justify-content: center;
}
.contact__title [data-lucide] {
  font-size: 2rem;
  color: var(--color-yellow);
}
.contact__form {
  background: #232d3e;
  border-radius: 1.3em;
  box-shadow: 0 4px 24px 0 rgba(58,143,94,0.11);
  padding: 2.3em 1.5em 1.4em 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  animation: fade-in-up 1s cubic-bezier(.84,.01,.41,.96) 0.14s backwards;
  position: relative;
}
.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 1.17em;
}
.contact__field {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
.contact__input {
  background: none;
  border: 1.5px solid var(--color-accent-light);
  color: var(--color-white);
  border-radius: 0.85em;
  font-size: 1.06rem;
  padding: 1em 1em 1em 1em;
  outline: none;
  width: 100%;
  transition: border 0.18s, box-shadow 0.18s, background 0.22s;
  font-family: var(--font-main);
  resize: vertical;
}
.contact__input:focus, .contact__input:valid {
  border: 1.5px solid var(--color-accent);
  background: rgba(58,143,94,0.08);
}
.contact__label {
  position: absolute;
  top: 1.3em;
  left: 1.1em;
  color: var(--color-accent-light);
  font-size: 1.04rem;
  pointer-events: none;
  background: transparent;
  transition: 0.18s;
  font-family: var(--font-mono);
  z-index: 1;
}
.contact__input:focus + .contact__label,
.contact__input:valid + .contact__label {
  top: -0.7em;
  left: 0.7em;
  font-size: 0.92rem;
  background: #232d3e;
  padding: 0 0.35em;
  color: var(--color-accent);
}
.contact__captcha {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.01rem;
  color: var(--color-accent-light);
  margin-top: 0.3em;
}
.contact__captcha input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 1.13em;
  height: 1.13em;
  margin-right: 0.12em;
}
.contact__btn {
  background: var(--color-yellow);
  color: var(--color-bg);
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 2em;
  padding: 0.9em 2.7em;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 0.8em;
  box-shadow: 0 2px 18px 0 rgba(231, 165, 18, 0.13);
  transition: background 0.19s, color 0.19s, box-shadow 0.18s;
}
.contact__btn:hover, .contact__btn:focus {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 6px 28px 0 rgba(58,143,94,0.10);
}
.contact__success {
  display: flex;
  align-items: center;
  gap: 0.6em;
  justify-content: center;
  margin-top: 1em;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 1.11rem;
  background: rgba(58,143,94,0.10);
  border-radius: 0.7em;
  padding: 0.7em 0.9em;
}
.contact__success [data-lucide] {
  color: var(--color-yellow);
  font-size: 1.2em;
}
@media (max-width: 600px) {
  .contact { padding: 2.2rem 0 1.1rem 0;}
  .contact__container { padding: 0 0.2rem;}
  .contact__form { padding: 1.3em 0.7em 1em 0.7em;}
}
.cookie-popup {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cookie-popup__body {
  background: #232d3e;
  color: var(--color-white);
  box-shadow: 0 4px 24px 0 rgba(58,143,94,0.13);
  border-radius: 1.1em 1.1em 0 0;
  padding: 1em 2em 1em 1.3em;
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 1em 0 0 0;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.7,0,.24,1), opacity 0.2s;
  pointer-events: all;
  font-size: 1.04rem;
}
.cookie-popup--show .cookie-popup__body {
  transform: translateY(0);
  opacity: 1;
}
.cookie-popup__icon {
  font-size: 1.5em;
  color: var(--color-yellow);
}
.cookie-popup__text {
  flex: 1;
  line-height: 1.43;
}
.cookie-popup__text a {
  color: var(--color-yellow);
  text-decoration: underline;
  transition: color 0.2s;
}
.cookie-popup__text a:hover {
  color: var(--color-accent);
}
.cookie-popup__btn {
  background: var(--color-yellow);
  color: var(--color-bg);
  font-weight: 700;
  border: none;
  border-radius: 2em;
  padding: 0.7em 1.6em;
  font-size: 1.04rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-popup__btn:hover, .cookie-popup__btn:focus {
  background: var(--color-accent);
  color: var(--color-white);
}
@media (max-width: 600px) {
  .cookie-popup__body { font-size: 0.97rem; padding: 0.8em 0.7em 0.8em 0.8em;}
}
.pages {
  background: linear-gradient(120deg, rgba(58,143,94,0.07) 0%, transparent 80%);
  padding: 3.7rem 0 2.8rem 0;
  min-height: 85vh;
}
.pages .container {
  max-width: 750px;
  margin: 0 auto;
  padding: 2.3rem 1.2rem 2rem 1.2rem;
  background: #232d3e;
  border-radius: 1.5em;
  box-shadow: 0 4px 24px 0 rgba(58,143,94,0.10);
}
.pages h1 {
  font-size: 2.1rem;
  font-family: var(--font-mono);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.pages h2 {
  font-size: 1.29rem;
  font-family: var(--font-mono);
  color: var(--color-yellow);
  margin-top: 2.1rem;
  margin-bottom: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pages p,
.pages ul,
.pages ol {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 1.1em;
  line-height: 1.64;
}
.pages ul, .pages ol {
  padding-left: 1.3em;
  margin-bottom: 1.25em;
}
.pages li {
  margin-bottom: 0.7em;
  color: var(--color-accent-light);
  font-size: 1.04rem;
  line-height: 1.54;
}
.pages strong {
  color: var(--color-accent);
  font-weight: 600;
}
.pages a {
  color: var(--color-yellow);
  text-decoration: underline;
  transition: color 0.18s;
  word-break: break-all;
}
.pages a:hover {
  color: var(--color-accent);
}
@media (max-width: 700px) {
  .pages .container {
    padding: 1.3rem 0.3rem 1.2rem 0.3rem;
    border-radius: 1.1em;
  }
  .pages h1 { font-size: 1.4rem;}
  .pages h2 { font-size: 1.09rem;}
  .pages { padding: 2rem 0 1rem 0;}
}
