@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;600;700&family=Geologica:wght@300;400;500&display=swap');

:root {
  --green: #74b981;
  --green-dark: #4e9460;
  --green-light: #a8d5b5;
  --dark: #0f1a13;
  --dark2: #1a2b1f;
  --mid: #2e4a35;
  --text: #e8f0ea;
  --text-muted: #8aa891;
  --white: #ffffff;
  --card-bg: rgba(255,255,255,0.04);
  --border: rgba(116,185,129,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Geologica', sans-serif;
  background: var(--dark);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,26,19,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--green); }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }

.nav-social { display: flex; gap: 1rem; }
.nav-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.2s;
}
.nav-social a:hover { border-color: var(--green); color: var(--green); }

/* BURGER */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(116,185,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-content { position: relative; max-width: 700px; }

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em { color: var(--green); font-style: normal; }

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-vacancy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2rem;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-vacancy strong { color: var(--green); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  font-family: 'Geologica', sans-serif;
}
.btn-primary {
  background: var(--green);
  color: var(--dark);
  border: none;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* SECTIONS */
section { padding: 6rem 4rem; }

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 1rem;
}

section h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 4rem;
}

/* CARDS GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { border-color: rgba(116,185,129,0.5); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px; height: 48px;
  background: rgba(116,185,129,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.card p { font-size: 0.9rem; color: var(--text-muted); }

.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--green); font-size: 0.85rem; font-weight: 500;
  text-decoration: none; margin-top: 1.5rem;
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.7rem; }

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 4rem;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-points { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.about-point {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.about-point-icon { color: var(--green); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.about-point p { font-size: 0.95rem; color: var(--text-muted); }

/* TECH */
.tech-section { background: var(--dark2); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.tech-group h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.tech-list { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; }
.tech-list li {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.testimonial-text { font-size: 0.95rem; color: var(--text-muted); font-style: italic; margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author { font-weight: 500; color: var(--white); font-size: 0.9rem; }
.testimonial-company { font-size: 0.8rem; color: var(--green); }

/* CONTACT */
.contact-section {
  background: var(--dark2);
  text-align: center;
}
.contact-section h2 { margin-bottom: 0.5rem; }
.contact-section p { color: var(--text-muted); margin-bottom: 2.5rem; }
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form input, .contact-form textarea {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.9rem 1.2rem;
  color: var(--text);
  font-family: 'Geologica', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.2s;
  resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--green);
}
.contact-tel {
  margin-top: 1rem;
  color: var(--text-muted); font-size: 0.9rem;
}
.contact-tel a { color: var(--green); text-decoration: none; }

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(116,185,129,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--text-muted); margin: 0 0.5rem; }
.page-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 700px;
}
.page-hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin-top: 1rem; }

/* FEATURE LIST */
.feature-list { display: flex; flex-direction: column; gap: 2rem; }
.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.feature-item:hover { border-color: rgba(116,185,129,0.5); }
.feature-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.6;
  line-height: 1;
}
.feature-item h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.feature-item p { font-size: 0.9rem; color: var(--text-muted); }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.4;
  line-height: 1;
}
.step h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.stat-card {
  background: rgba(116,185,129,0.07);
  border: 1px solid rgba(116,185,129,0.3);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* CTA BLOCK */
.cta-block {
  background: linear-gradient(135deg, rgba(116,185,129,0.1) 0%, rgba(116,185,129,0.05) 100%);
  border: 1px solid rgba(116,185,129,0.25);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}
.cta-block h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}
.cta-block p { color: var(--text-muted); margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 4rem 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.75rem; max-width: 280px; }
.footer-col h5 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }

.footer-subscribe { display: flex; gap: 0.5rem; }
.footer-subscribe input {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  color: var(--text);
  font-size: 0.85rem;
  font-family: 'Geologica', sans-serif;
}
.footer-subscribe input:focus { outline: none; border-color: var(--green); }
.footer-subscribe button {
  background: var(--green);
  color: var(--dark);
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Geologica', sans-serif;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE NAV */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0; background: var(--dark2);
    align-items: center; justify-content: center; gap: 2rem; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-social { display: none; }
  .burger { display: flex; z-index: 101; position: relative; }
  .hero, .page-hero { padding: 7rem 2rem 3rem; }
  section { padding: 4rem 2rem; }
  .divider { margin: 0 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tech-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  footer { padding: 3rem 2rem 2rem; }
  .feature-item { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
}
