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

:root {
  --green:   #4ade80;
  --green2:  #22c55e;
  --green3:  #16a34a;
  --dark:    #080c09;
  --dark2:   #0d1410;
  --dark3:   #121a14;
  --dark4:   #19201c;
  --text:    #e8f0ea;
  --muted:   #6b8f74;
  --radius:  14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* ── UTILS ──────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(90deg, var(--green), #a3e635);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.25);
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ── LOGO IMAGE ─────────────────────────────────── */
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 58px; width: auto; display: block; object-fit: contain; }
.logo-img--footer { height: 44px; }

/* ── BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--green3), var(--green));
  color: #04150a;
  font-weight: 800;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(74,222,128,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(74,222,128,.45); }
.btn-primary.btn-large { padding: 18px 40px; font-size: 1.05rem; }
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(74,222,128,.2);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(74,222,128,.5); background: rgba(74,222,128,.06); }

.btn-nav {
  display: inline-block;
  background: linear-gradient(135deg, var(--green3), var(--green));
  color: #04150a;
  font-weight: 800;
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-nav:hover { opacity: .85; }

/* ── NAV ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: #000;
  border-bottom: 1px solid rgba(74,222,128,.1);
  transition: background .3s;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: var(--green); }

.burger { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px 40px;
  position: relative;
  overflow: hidden;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .2;
  animation: drift 14s ease-in-out infinite alternate;
}
.blob-1 { width: 520px; height: 520px; background: var(--green3); top: -120px; left: -180px; animation-delay: 0s; }
.blob-2 { width: 420px; height: 420px; background: #a3e635; bottom: -100px; right: -120px; animation-delay: -5s; }
.blob-3 { width: 320px; height: 320px; background: var(--green); top: 35%; left: 38%; animation-delay: -9s; }

@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(50px,35px) scale(1.12); }
}

.hero-content { flex: 1; position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.2);
  color: var(--green);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub { color: var(--muted); font-size: 1.1rem; line-height: 1.7; max-width: 480px; margin-bottom: 36px; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.6rem; font-weight: 900; color: var(--green); }
.stat span { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 36px; background: rgba(74,222,128,.15); }

/* ── HERO VISUAL ─────────────────────────────────── */
.hero-visual {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
  mask-image: linear-gradient(to right, black 70%, transparent 100%);
}

.orbit-container {
  position: relative;
  width: 430px;
  height: 430px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
}

.orbit-card {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.8rem;
  background: rgba(74,222,128,.06);
  border: 1px solid rgba(74,222,128,.18);
  backdrop-filter: blur(8px);
  top: 50%;
  left: 50%;
  margin: -55px 0 0 -55px;
  transition: box-shadow .3s;
  will-change: transform;
}
.orbit-card:hover { box-shadow: 0 0 20px rgba(74,222,128,.25); }

.orbit-card span {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green3), var(--green));
  font-size: 1.5rem;
  font-weight: 900;
  color: #04150a;
  letter-spacing: -.03em;
  z-index: 2;
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(74,222,128,.3);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5), 0 0 40px rgba(74,222,128,.3); }
  50%       { box-shadow: 0 0 0 14px rgba(74,222,128,0), 0 0 40px rgba(74,222,128,.3); }
}

/* ── TEAM ────────────────────────────────────────── */
.team { padding: 100px 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
  transition: transform .25s;
}
.team-card:hover { transform: translateY(-6px); }

.team-photo {
  width: 200px;
  height: 220px;
  margin: 0 auto 24px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.15);
  position: relative;
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(8,12,9,.6));
  border-radius: 16px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%);
  transition: filter .3s;
}
.team-card:hover .team-photo img { filter: grayscale(60%); }

.team-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}
.team-card p {
  font-size: .9rem;
  color: var(--green);
  font-weight: 600;
}

@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}

/* ── SERVICES ────────────────────────────────────── */
.services { padding: 100px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card--wide { grid-column: span 2; }

.service-card {
  background: var(--dark3);
  border: 1px solid rgba(74,222,128,.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74,222,128,.3);
  box-shadow: 0 12px 40px rgba(74,222,128,.07);
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: 16px; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-card ul li { font-size: .85rem; color: var(--muted); padding-left: 14px; position: relative; }
.service-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--green); }

.service-card--wide { display: flex; gap: 28px; align-items: flex-start; }
.service-card--wide .service-icon { flex-shrink: 0; }
.service-card--wide ul { flex-direction: row; flex-wrap: wrap; gap: 8px 24px; }

/* ── PROCESS ─────────────────────────────────────── */
.process {
  padding: 80px 0;
  background: var(--dark2);
  border-top: 1px solid rgba(74,222,128,.06);
  border-bottom: 1px solid rgba(74,222,128,.06);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: var(--dark3);
  border: 1px solid rgba(74,222,128,.08);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 10px;
}
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .85rem; color: var(--muted); line-height: 1.5; }

.step-arrow { font-size: 1.5rem; color: rgba(74,222,128,.3); align-self: center; }

/* ── ABOUT ───────────────────────────────────────── */
.about { padding: 100px 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.about-text p { color: var(--muted); font-size: .95rem; line-height: 1.7; margin-bottom: 16px; }

.about-values { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.value { font-size: .9rem; font-weight: 600; color: var(--green); }

.about-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.big-number {
  background: var(--dark3);
  border: 1px solid rgba(74,222,128,.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .25s, border-color .25s;
}
.big-number:hover { transform: translateY(-3px); border-color: rgba(74,222,128,.3); }
.big-number strong { font-size: 2.2rem; font-weight: 900; color: var(--green); }
.big-number span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* ── CTA BANNER ──────────────────────────────────── */
.cta-banner {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark2);
}
.cta-blobs { position: absolute; inset: 0; pointer-events: none; }
.cta-banner .blob-1 { width: 400px; height: 400px; left: -100px; top: -100px; opacity: .12; }
.cta-banner .blob-2 { width: 350px; height: 350px; right: -80px; bottom: -80px; opacity: .12; background: #a3e635; }
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.cta-banner p { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── CONTACT ─────────────────────────────────────── */
.contact { padding: 100px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; line-height: 1.2; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-item strong { display: block; font-weight: 700; margin-bottom: 4px; }
.contact-item p { color: var(--muted); font-size: .9rem; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--dark3);
  border: 1px solid rgba(74,222,128,.12);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: .9rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--green); }
.contact-form select { cursor: pointer; }
.contact-form select option { background: var(--dark3); }
.contact-form textarea { resize: vertical; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  padding: 32px 40px;
  border-top: 1px solid rgba(74,222,128,.08);
  background: var(--dark2);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer p { color: var(--muted); font-size: .85rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--green); }

/* ── TOAST ───────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: linear-gradient(135deg, var(--green3), var(--green));
  color: #04150a;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(74,222,128,.3);
  transform: translateY(100px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  z-index: 999;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── MOBILE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .burger { display: block; }

  .hero { flex-direction: column; padding: 80px 20px 40px; text-align: center; gap: 40px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .media-grid { grid-template-columns: repeat(3, 90px); grid-template-rows: repeat(3, 90px); }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--wide { grid-column: span 2; flex-direction: column; }

  .process-steps { gap: 12px; }
  .step-arrow { display: none; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; }
  .about-numbers { grid-template-columns: 1fr 1fr; }
}
