
:root{
  --bg:#07130d;
  --bg-soft:#0d1f16;
  --panel:rgba(255,255,255,0.08);
  --panel-strong:rgba(255,255,255,0.12);
  --border:rgba(255,255,255,0.12);
  --text:#eef6f0;
  --muted:#a7bbb0;
  --green:#22c55e;
  --green-2:#47e879;
  --green-3:#b8ffcf;
  --shadow:0 24px 60px rgba(0,0,0,.34);
  --shadow-soft:0 12px 30px rgba(0,0,0,.22);
  --radius:24px;
  --container:min(1200px, calc(100% - 40px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(34,197,94,.16), transparent 28%),
    radial-gradient(circle at top right, rgba(71,232,121,.10), transparent 22%),
    linear-gradient(180deg, #07130d 0%, #08160f 40%, #0a1811 100%);
  min-height:100vh;
  line-height:1.6;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.22), transparent 65%);
  z-index:-1;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block;background:transparent}
.container{width:var(--container);margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:110;
  backdrop-filter:blur(18px);
  background:rgba(7,19,13,.72);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:10px 0;
}
.contact-items{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.contact-item,
.lang-toggle{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
  color:var(--text);
  box-shadow:var(--shadow-soft);
  white-space:nowrap;
  transition:transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}
.contact-item:hover,
.lang-toggle:hover{
  transform:translateY(-1px);
  border-color:rgba(71,232,121,.35);
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
}
.icon-circle{
  display:grid;
  place-items:center;
  width:26px;
  height:26px;
  border-radius:999px;
  background:rgba(34,197,94,.16);
  color:var(--green-3);
  font-size:13px;
  flex:0 0 auto;
}
.lang-toggle{
  cursor:pointer;
  font-weight:800;
}

.navbar{
  position:sticky;
  top:80px;
  z-index:100;
  backdrop-filter:blur(18px);
  background:rgba(7,19,13,.56);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:86px;
}
.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}
.brand img{
  height:48px;
  width:auto;
  object-fit:contain;
  background:transparent !important;
  filter:drop-shadow(0 10px 24px rgba(34,197,94,.18));
  transition:transform .35s ease, filter .35s ease;
}
.brand:hover img{
  transform:translateY(-1px) scale(1.01);
  filter:drop-shadow(0 14px 30px rgba(71,232,121,.22));
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}
.nav-links a{
  position:relative;
  padding:6px 0;
  color:#d7e8dc;
  font-weight:700;
  transition:color .25s ease;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--green), var(--green-2));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}
.nav-links a:hover{color:#fff}
.nav-links a:hover::after{transform:scaleX(1)}
.nav-links a.active{
  color:var(--green-2);
}
.nav-links a.active::after{transform:scaleX(1)}

.hero{
  position:relative;
  padding:64px 0 40px;
}
.hero::before,
.hero::after{
  content:"";
  position:absolute;
  border-radius:999px;
  filter:blur(70px);
  opacity:.55;
  pointer-events:none;
}
.hero::before{
  width:320px;height:320px;
  background:rgba(34,197,94,.22);
  top:32px;left:-40px;
}
.hero::after{
  width:260px;height:260px;
  background:rgba(71,232,121,.14);
  right:-30px;top:80px;
}
.hero-grid,
.grid-2,
.grid-3,
.contact-grid{
  display:grid;
  gap:22px;
}
.hero-grid{grid-template-columns:1.1fr .9fr;align-items:center}
.grid-2,
.contact-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3, minmax(0,1fr))}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 15px;
  border-radius:999px;
  border:1px solid rgba(184,255,207,.15);
  background:rgba(184,255,207,.08);
  color:var(--green-3);
  font-weight:800;
  letter-spacing:.02em;
  backdrop-filter:blur(12px);
}
.eyebrow::before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:var(--green-2);
  box-shadow:0 0 18px var(--green-2);
}
h1{
  margin:18px 0 16px;
  font-size:clamp(42px,6vw,80px);
  line-height:1;
  letter-spacing:-.04em;
  max-width:11ch;
}
.gradient-text{
  background:linear-gradient(180deg,#fff 0%, #d8fee4 28%, #8df7ae 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p,
.page-hero p,
.section-title p,
.card p,
.card li,
.timeline-item p,
.footer-inner,
.contact-grid p{
  color:var(--muted);
}
.hero p,
.page-hero p{
  max-width:720px;
  margin:0 0 28px;
  font-size:18px;
}
.page-hero{
  padding:54px 0 18px;
}
.page-hero h1{
  max-width:14ch;
  margin-bottom:18px;
}

.btn-row{display:flex;flex-wrap:wrap;gap:14px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  font-weight:800;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  color:#041008;
  background:linear-gradient(135deg,var(--green-2), var(--green));
  box-shadow:0 16px 40px rgba(34,197,94,.24);
}
.btn-secondary{
  color:var(--text);
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
}

.hero-card,.card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}
.hero-card::before,.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.12), transparent 35%, transparent 65%, rgba(71,232,121,.06));
  pointer-events:none;
}
.hero-card{
  padding:24px;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-card img{
  width:min(100%, 520px);
  animation:floatLogo 5.5s ease-in-out infinite;
  filter:drop-shadow(0 20px 55px rgba(34,197,94,.24));
  background:transparent !important;
  position:relative;
  z-index:2;
}
.hero-visual{
  position:relative;
  width:100%;
  min-height:440px;
  display:grid;
  place-items:center;
  isolation:isolate;
}
.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(2px);
  opacity:.8;
  animation:floatOrb 7s ease-in-out infinite;
  z-index:1;
  pointer-events:none;
}
.orb.one{
  width:72px;
  height:72px;
  right:10%;
  top:11%;
  background:radial-gradient(circle at 30% 30%, #b8ffcf, #22c55e);
}
.orb.two{
  width:28px;
  height:28px;
  left:5%;
  bottom:20%;
  background:radial-gradient(circle at 30% 30%, #fff, #47e879);
  animation-delay:1.3s;
}
.orb.three{
  width:16px;
  height:16px;
  right:24%;
  bottom:28%;
  background:#b8ffcf;
  animation-delay:2.2s;
}
.floating-panel{
  position:absolute;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:20px;
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow-soft);
  padding:14px 16px;
  animation:floatPanel 6s ease-in-out infinite;
  z-index:3;
}
.floating-panel small{display:block;color:var(--muted);font-size:12px}
.floating-panel strong{display:block;font-size:20px}
.panel-a{top:8%;left:0%;animation-delay:.3s}
.panel-b{bottom:12%;right:0%;animation-delay:1.1s}
.panel-c{bottom:4%;left:10%;animation-delay:1.8s}

.section{
  padding:42px 0 52px;
}
.section-title{margin-bottom:24px}
.section-title h2{
  margin:0 0 10px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.05;
  letter-spacing:-.03em;
}
.card{padding:28px}
.card:hover{
  transform:translateY(-4px);
  transition:transform .28s ease, border-color .28s ease;
  border-color:rgba(71,232,121,.20);
}
.card h3{
  margin:0 0 10px;
  font-size:22px;
}
.list{padding-left:20px;margin:0}
.timeline{display:grid;gap:14px}
.timeline-item{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:16px;
  align-items:flex-start;
}
.year{
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(34,197,94,.22), rgba(34,197,94,.08));
  color:#d7ffe4;
  font-weight:900;
  border:1px solid rgba(184,255,207,.12);
}
.contact-cta{margin-top:18px}

.footer{padding:30px 0 46px}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:24px;
}

.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1)}
.reveal.in-view{opacity:1;transform:translateY(0)}

@keyframes floatLogo{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes floatOrb{0%,100%{transform:translate3d(0,0,0)}50%{transform:translate3d(0,-16px,0)}}
@keyframes floatPanel{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

@media (max-width: 1024px){
  .hero-grid,.grid-2,.grid-3,.contact-grid{grid-template-columns:1fr}
  .hero-card{min-height:400px}
  .nav-inner{min-height:78px}
}

@media (max-width: 768px){
  .topbar{top:0}
  .navbar{top:80px}
  .topbar-inner{
    min-height:56px;
    gap:10px;
  }
  .contact-items{
    width:100%;
    justify-content:space-between;
    flex-wrap:nowrap;
    gap:8px;
  }
  .contact-item[href^="mailto:"]{display:none}
  .contact-item,
  .lang-toggle{
    padding:9px 14px;
    font-size:14px;
  }
  .nav-inner{
    min-height:74px;
    gap:14px;
  }
  .brand img{height:38px}
  .nav-links{
    gap:14px 18px;
    justify-content:flex-end;
    font-size:15px;
  }
  h1{max-width:none;font-size:clamp(38px,10vw,60px)}
  .hero{padding-top:36px}
  .hero-card{min-height:300px}
}

@media (max-width: 560px){
  .container{width:min(100% - 24px, 1200px)}
  .topbar-inner{padding:8px 0}
  .icon-circle{display:none}
  .contact-item{min-width:0}
  .contact-item span:last-child{overflow:hidden;text-overflow:ellipsis}
  .navbar{top:72px}
  .nav-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:12px 0 14px;
  }
  .nav-links{
    width:100%;
    justify-content:space-between;
    gap:10px;
    font-size:14px;
  }
  .brand img{height:34px}
}
