/* === RESET & VARIABLES === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050a05;
  --bg2: #0a120a;
  --card: #0d1a0d;
  --card2: #142214;
  --g: #1db954;
  --gl: #2ecc71;
  --gd: #0f9b3f;
  --gg: rgba(29, 185, 84, .3);
  --ggs: rgba(29, 185, 84, .12);
  --red: #e74c3c;
  --tp: #eaf5ea;
  --ts: #8faa8f;
  --tm: #5a755a;
  --bd: rgba(29, 185, 84, .1);
  --bdd: rgba(29, 185, 84, .06);
  --fh: 'Outfit', sans-serif;
  --fb: 'Space Grotesk', sans-serif;
  --fm: 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--tp);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: .75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: rgba(5, 10, 5, .85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdd);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.navbar-logo img { height: 52px; width: auto; }

.navbar-logo-text {
  font-family: var(--fh);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--tp);
}

.navbar-logo-text span { color: var(--g); }

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

.nav-links a {
  color: var(--ts);
  text-decoration: none;
  font-size: .9rem;
  transition: color .3s;
}

.nav-links a:hover { color: var(--tp); }

.nav-cta {
  padding: .55rem 1.4rem;
  background: var(--g) !important;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all .3s !important;
}

.nav-cta:hover {
  background: var(--gd) !important;
  box-shadow: 0 0 25px var(--gg);
}

.mob-tog {
  display: none;
  background: none;
  border: 0;
  color: var(--tp);
  font-size: 1.5rem;
  cursor: pointer;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-bg .gl {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 185, 84, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 185, 84, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-bg .rg {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(29, 185, 84, .07) 0%, rgba(15, 155, 63, .03) 40%, transparent 70%);
}

.hero-bg .cl { position: absolute; background: rgba(29, 185, 84, .06); }
.hero-bg .cl.h1 { top: 30%; left: 0; width: 15%; height: 1px; }
.hero-bg .cl.h2 { top: 60%; right: 0; width: 12%; height: 1px; }
.hero-bg .cl.v1 { top: 0; left: 20%; width: 1px; height: 20%; }
.hero-bg .cl.v2 { bottom: 0; right: 25%; width: 1px; height: 15%; }

.hero-bg .cd {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(29, 185, 84, .15);
  border-radius: 50%;
}

.hero-bg .cd.d1 { top: 30%; left: 15%; }
.hero-bg .cd.d2 { top: 60%; right: 12%; }
.hero-bg .cd.d3 { top: 20%; left: 20%; }

.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1.2rem;
  background: rgba(29, 185, 84, .08);
  border: 1px solid rgba(29, 185, 84, .2);
  border-radius: 50px;
  font-size: .85rem;
  color: var(--g);
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeInDown .8s ease;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gl);
  border-radius: 50%;
  animation: pd 2s infinite;
}

@keyframes pd {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.6); }
}

.hero h1 {
  font-family: var(--fh);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  animation: fadeInUp .8s ease .1s both;
}

.hero h1 .hl {
  background: linear-gradient(135deg, var(--g), var(--gl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--ts);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp .8s ease .2s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp .8s ease .3s both;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--fb);
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: all .3s;
}

.btn-p {
  background: linear-gradient(135deg, var(--g), var(--gd));
  color: #fff;
  box-shadow: 0 4px 20px var(--gg);
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px var(--gg);
}

.btn-s {
  background: rgba(29, 185, 84, .08);
  color: var(--tp);
  border: 1px solid rgba(29, 185, 84, .15);
}

.btn-s:hover {
  background: rgba(29, 185, 84, .14);
  border-color: rgba(29, 185, 84, .3);
  transform: translateY(-2px);
}

/* === HERO STATS === */
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
  animation: fadeInUp .8s ease .5s both;
}

.hero-stat { text-align: center; }

.hero-stat .num {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 700;
  color: var(--g);
}

.hero-stat .label {
  font-size: .8rem;
  color: var(--tm);
  margin-top: .2rem;
}

/* === SECTION COMMON === */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sl {
  font-family: var(--fm);
  font-size: .8rem;
  color: var(--g);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.st {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ss {
  font-size: 1.1rem;
  color: var(--ts);
  max-width: 600px;
  line-height: 1.6;
}

/* === ORBIT ANIMATION === */
.orbit-sec {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.orbit-sec::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(29, 185, 84, .05) 0%, transparent 70%);
  pointer-events: none;
}

.orbit-box {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 4rem auto 0;
}

.orbit-c {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--card), var(--card2));
  border: 2px solid var(--g);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 700;
  font-size: .85rem;
  color: var(--g);
  box-shadow: 0 0 40px rgba(29, 185, 84, .2), inset 0 0 20px rgba(29, 185, 84, .05);
  z-index: 10;
  text-align: center;
  line-height: 1.3;
}

.orbit-r {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed;
}

.orbit-ri {
  width: 300px;
  height: 300px;
  margin: -150px 0 0 -150px;
  border-color: rgba(29, 185, 84, .18);
  animation: sp 30s linear infinite;
}

.orbit-ro {
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  border-color: rgba(29, 185, 84, .12);
  animation: sp 45s linear infinite reverse;
}

@keyframes sp {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.on {
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--card);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  font-size: .62rem;
  font-weight: 500;
  color: var(--ts);
  border: 1px solid var(--bd);
  transition: all .3s;
  cursor: default;
  text-align: center;
  padding: .3rem;
}

.on:hover {
  border-color: var(--g);
  box-shadow: 0 0 20px var(--gg);
  transform: scale(1.15);
  z-index: 20;
  color: var(--tp);
}

.on .ni { font-size: 1.3rem; }

.orbit-ri .on { animation: csp 30s linear infinite; }
.orbit-ro .on { animation: csp 45s linear infinite reverse; }

@keyframes csp {
  from { transform: rotate(0); }
  to { transform: rotate(-360deg); }
}

/* Orbit node positions - inner */
.orbit-ri .n1 { top: -35px; left: 50%; margin-left: -35px; }
.orbit-ri .n2 { top: 50%; right: -35px; margin-top: -35px; }
.orbit-ri .n3 { bottom: -35px; left: 50%; margin-left: -35px; }
.orbit-ri .n4 { top: 50%; left: -35px; margin-top: -35px; }

/* Orbit node positions - outer */
.orbit-ro .n5 { top: -35px; left: 50%; margin-left: -35px; }
.orbit-ro .n6 { top: 15%; right: -20px; }
.orbit-ro .n7 { bottom: 15%; right: -20px; }
.orbit-ro .n8 { bottom: -35px; left: 50%; margin-left: -35px; }
.orbit-ro .n9 { bottom: 15%; left: -20px; }
.orbit-ro .n10 { top: 15%; left: -20px; }

.orbit-leg {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.orbit-leg-i {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--ts);
}

.orbit-leg-d { width: 10px; height: 10px; border-radius: 50%; }
.orbit-leg-d.i { background: var(--g); box-shadow: 0 0 8px var(--gg); }
.orbit-leg-d.o { background: var(--gl); box-shadow: 0 0 8px rgba(46, 204, 113, .3); }

/* === PILLARS === */
.pg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.pc {
  background: var(--card);
  border: 1px solid var(--bdd);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all .4s;
}

.pc:hover {
  border-color: rgba(29, 185, 84, .2);
  transform: translateY(-4px);
}

.pc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g), var(--gl));
}

.pi {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(29, 185, 84, .08);
  border: 1px solid rgba(29, 185, 84, .15);
}

.pc h3 {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.pc .pd {
  color: var(--ts);
  font-size: .95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.pl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}

.pl li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--ts);
}

.pl li .ck {
  color: var(--g);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

.pb {
  display: inline-block;
  padding: .4rem 1rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  margin-top: .5rem;
  background: rgba(29, 185, 84, .08);
  color: var(--g);
  border: 1px solid rgba(29, 185, 84, .15);
}

/* === SCM SECTION === */
.scm-sec {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.scm-f {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 3rem;
}

.scm-col h4 {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid;
}

.scm-b h4 { color: var(--red); border-color: rgba(231, 76, 60, .3); }
.scm-a h4 { color: var(--g); border-color: rgba(29, 185, 84, .3); }

.si {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  margin-bottom: .75rem;
  font-size: .85rem;
  text-align: left;
  line-height: 1.5;
  opacity: 0;
  transform: translateX(-20px);
  transition: all .5s;
}

.si.vis { opacity: 1; transform: translateX(0); }

.scm-b .si {
  background: rgba(231, 76, 60, .05);
  border: 1px solid rgba(231, 76, 60, .1);
  color: var(--ts);
}

.scm-a .si {
  background: rgba(29, 185, 84, .05);
  border: 1px solid rgba(29, 185, 84, .1);
  color: var(--ts);
  transform: translateX(20px);
}

.scm-a .si.vis { transform: translateX(0); }

.si .ii { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }

.scm-ac {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  min-height: 400px;
}

.scm-ar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g), var(--gd));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 30px var(--gg);
  animation: pa 2s infinite;
}

.scm-al {
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 600;
  color: var(--g);
  margin-top: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

@keyframes pa {
  0%, 100% { box-shadow: 0 0 20px var(--gg); }
  50% { box-shadow: 0 0 45px rgba(29, 185, 84, .5); }
}

.scm-res {
  margin-top: 2.5rem;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(135deg, rgba(29, 185, 84, .08), rgba(46, 204, 113, .05));
  border: 1px solid rgba(29, 185, 84, .2);
  border-radius: 16px;
  display: inline-block;
}

.scm-res .bs {
  font-family: var(--fh);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--g);
}

.scm-res .slab { color: var(--ts); font-size: .95rem; }

/* === PROCESS === */
.ps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pst {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--bdd);
  border-radius: 16px;
  transition: all .3s;
}

.pst:hover {
  border-color: rgba(29, 185, 84, .25);
  transform: translateY(-4px);
}

.sn {
  font-family: var(--fh);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--g), var(--gl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .75rem;
}

.pst h4 {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.pst p { font-size: .85rem; color: var(--ts); line-height: 1.6; }

/* === WHY US === */
.wg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.wc {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--bdd);
  border-radius: 16px;
  transition: all .3s;
}

.wc:hover { border-color: rgba(29, 185, 84, .2); transform: translateY(-3px); }
.wc .wi { font-size: 1.8rem; margin-bottom: 1rem; }
.wc h4 { font-family: var(--fh); font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem; }
.wc p { font-size: .88rem; color: var(--ts); line-height: 1.6; }

/* === CASE STUDIES === */
.cg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.cc {
  background: var(--card);
  border: 1px solid var(--bdd);
  border-radius: 16px;
  overflow: hidden;
  transition: all .4s;
}

.cc:hover { border-color: rgba(29, 185, 84, .2); transform: translateY(-4px); }
.ch { padding: 1.5rem 2rem 1rem; }

.ct {
  display: inline-block;
  padding: .25rem .8rem;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  background: rgba(29, 185, 84, .08);
  color: var(--g);
}

.cc h4 { font-family: var(--fh); font-size: 1.15rem; font-weight: 600; margin-bottom: .5rem; }
.cc p { font-size: .88rem; color: var(--ts); line-height: 1.6; padding: 0 2rem; }
.cs { padding: 1.2rem 2rem 1.5rem; display: flex; align-items: baseline; gap: .5rem; }
.cs .sv { font-family: var(--fh); font-size: 1.8rem; font-weight: 700; color: var(--g); }
.cs .sd { font-size: .8rem; color: var(--tm); }

/* === ABOUT === */
.ag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.ac p { color: var(--ts); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.ac a { color: var(--g); text-decoration: none; font-weight: 600; }
.ah { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }

.achip {
  padding: .4rem 1rem;
  background: rgba(29, 185, 84, .06);
  border: 1px solid rgba(29, 185, 84, .12);
  border-radius: 8px;
  font-size: .82rem;
  color: var(--g);
  font-weight: 500;
}

.asc {
  padding: 1.5rem 2rem;
  background: var(--card);
  border: 1px solid var(--bdd);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all .3s;
  margin-bottom: 1rem;
}

.asc:hover { border-color: rgba(29, 185, 84, .2); }
.asi { font-size: 2rem; }
.asn h5 { font-family: var(--fh); font-size: 1.4rem; font-weight: 700; color: var(--g); }
.asn span { font-size: .85rem; color: var(--ts); }

/* === CTA SECTION === */
.cta-sec {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(29, 185, 84, .05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-in { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }

.cta-sec h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--ts);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-ps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cta-p {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--bdd);
  border-radius: 16px;
  text-align: left;
  transition: all .3s;
}

.cta-p:hover { border-color: rgba(29, 185, 84, .2); transform: translateY(-3px); }
.cta-p .ppi { font-size: 1.5rem; margin-bottom: .75rem; }
.cta-p h4 { font-family: var(--fh); font-weight: 600; margin-bottom: .5rem; }
.cta-p p { font-size: .85rem; color: var(--ts); margin-bottom: 1rem; line-height: 1.5; }

.cta-p .ppl {
  font-size: .9rem;
  color: var(--g);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .3s;
}

.cta-p .ppl:hover { gap: .6rem; }

/* === FORM PROMPT === */
.form-prompt {
  font-size: .95rem;
  color: var(--ts);
  margin-bottom: 2rem;
  padding: .75rem 1.5rem;
  background: rgba(29, 185, 84, .05);
  border: 1px solid rgba(29, 185, 84, .12);
  border-radius: 10px;
  display: inline-block;
}

/* === CONTACT FORM === */
.cf { max-width: 500px; margin: 0 auto; text-align: left; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: .85rem; color: var(--ts); margin-bottom: .4rem; font-weight: 500; }

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: 10px;
  color: var(--tp);
  font-family: var(--fb);
  font-size: .9rem;
  transition: border-color .3s;
  outline: 0;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--g); }

.fg textarea { resize: vertical; min-height: 80px; }
.fg select option { background: var(--card); }

.fsub {
  width: 100%;
  padding: .9rem;
  background: linear-gradient(135deg, var(--g), var(--gd));
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  margin-top: .5rem;
}

.fsub:hover {
  box-shadow: 0 8px 30px var(--gg);
  transform: translateY(-2px);
}

.fsub:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* === CAPTCHA === */
.captcha-group {
  background: rgba(29, 185, 84, .04);
  border: 1px solid rgba(29, 185, 84, .1);
  border-radius: 12px;
  padding: 1rem;
}

.captcha-group label {
  color: var(--g) !important;
  font-weight: 600 !important;
}

.captcha-group #captcha-question {
  font-family: var(--fm);
  font-size: 1rem;
  color: var(--tp);
}

/* === FORM MESSAGE === */
.form-msg {
  padding: .75rem 1rem;
  border-radius: 10px;
  font-size: .9rem;
  margin-top: .75rem;
  text-align: center;
  display: none;
  animation: fadeInUp .3s ease;
}

.form-msg.success {
  background: rgba(29, 185, 84, .1);
  border: 1px solid rgba(29, 185, 84, .2);
  color: var(--g);
}

.form-msg.error {
  background: rgba(231, 76, 60, .1);
  border: 1px solid rgba(231, 76, 60, .2);
  color: var(--red);
}

/* === FOOTER === */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--bdd);
}

.footer-in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-lk { display: flex; gap: 1.5rem; list-style: none; }
.footer-lk a { color: var(--tm); text-decoration: none; font-size: .85rem; transition: color .3s; }
.footer-lk a:hover { color: var(--tp); }
.footer-cp { font-size: .82rem; color: var(--tm); }

.footer-brand { display: flex; flex-direction: column; gap: .4rem; }
.footer-addr { font-size: .82rem; color: var(--tm); margin-top: .3rem; }
.footer-email {
  font-size: .85rem;
  color: var(--g);
  text-decoration: none;
  font-weight: 500;
  transition: color .3s;
}
.footer-email:hover { color: var(--gl); }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fi {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fi.vis {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: show elements after 3s even if observer fails */
@media (prefers-reduced-motion: reduce) {
  .fi, .si { opacity: 1 !important; transform: none !important; }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 10, 5, .97);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--bdd);
    gap: 1rem;
  }

  .mob-tog { display: block; }
  .pg, .ag, .cta-ps { grid-template-columns: 1fr; }
  .ps { grid-template-columns: repeat(2, 1fr); }
  .wg, .cg { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

  .orbit-box { width: 340px; height: 340px; }
  .orbit-ri { width: 200px; height: 200px; margin: -100px 0 0 -100px; }
  .orbit-ro { width: 310px; height: 310px; margin: -155px 0 0 -155px; }
  .orbit-c { width: 90px; height: 90px; font-size: .7rem; }
  .on { width: 55px; height: 55px; font-size: .55rem; }
  .on .ni { font-size: 1rem; }

  .scm-f { grid-template-columns: 1fr; }
  .scm-ac { min-height: auto; padding: 1.5rem 0; flex-direction: row; gap: 1rem; }
  .footer-in { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .ps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }

  .orbit-box { width: 280px; height: 280px; }
  .orbit-ri { width: 170px; height: 170px; margin: -85px 0 0 -85px; }
  .orbit-ro { width: 260px; height: 260px; margin: -130px 0 0 -130px; }
  .on { width: 48px; height: 48px; font-size: .5rem; border-radius: 12px; }
  .orbit-c { width: 75px; height: 75px; font-size: .6rem; }
  .orbit-leg { flex-direction: column; align-items: center; gap: .75rem; }
}
