/* ========== Brand ========== */
:root{
  --brand-green:#41A317;
  --brand-green-hover:#4FB81F;
  --bg:#0A0A0A;
  --bg-secondary:#111111;
  --muted:#9CA3AF;
  --white:#ffffff;
  --max-width:1200px;
  --radius:16px;
  --card-padding:28px;
  --gap:24px;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;}
html,body{height:100%;width:100%;overflow-x:hidden;}
body{
  margin:0;
  padding:0;
  background:var(--bg);
  background-image:radial-gradient(circle at 20% 50%, rgba(65,163,23,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(65,163,23,0.03) 0%, transparent 50%);
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
}
.container{max-width:var(--max-width);margin:0 auto;padding:40px 24px;width:100%;}

/* ========== Header ========== */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 32px;
  position:sticky;
  top:12px;
  z-index:100;
  background:rgba(10,10,10,0.8);
  backdrop-filter:blur(10px);
  border-radius:20px;
  width:calc(100% - 48px);
  max-width:var(--max-width);
  margin:0 auto;
  box-shadow:0 8px 32px rgba(0,0,0,0.4);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  transition:transform 0.2s;
  flex-shrink:0;
  min-width:0;
}
.brand a{
  text-decoration:none;
  display:flex;
  align-items:center;
}
.brand:hover{transform:translateY(-1px);}
.logo{
  width:auto;
  height:48px;
  max-width:120px;
  min-width:60px;
  display:block;
  transition:transform 0.3s;
  object-fit:contain;
  flex-shrink:0;
}
.brand:hover .logo{transform:scale(1.05);}
nav{display:flex;gap:20px;align-items:center;}
nav.nav-menu{display:flex;gap:20px;align-items:center;}
nav a{
  color:var(--muted);
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  transition:color 0.2s;
  position:relative;
}
nav a:hover{color:var(--white);}
nav a:not(.cta)::after{
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:2px;
  background:var(--brand-green);
  transition:width 0.3s;
}
nav a:not(.cta):hover::after{width:100%;}

/* Hamburger Menu */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:8px;
  z-index:101;
  position:relative;
  align-items:center;
  justify-content:center;
}
.hamburger span{
  width:24px;
  height:2px;
  background:var(--white);
  transition:all 0.3s;
  border-radius:2px;
}
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(7px,7px);
}
.hamburger.active span:nth-child(2){
  opacity:0;
}
.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(7px,-7px);
}
.cta{
  background:var(--brand-green);
  color:var(--bg);
  padding:12px 20px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  transition:all 0.3s;
  box-shadow:0 4px 12px rgba(65,163,23,0.3);
}
.cta:hover{
  background:var(--brand-green-hover);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(65,163,23,0.4);
}

/* ========== Hero ========== */
.hero{
  padding:80px 0 60px;
  position:relative;
}
.hero::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  width:100%;
  height:200%;
  background:radial-gradient(circle, rgba(65,163,23,0.1) 0%, transparent 70%);
  pointer-events:none;
  z-index:-1;
}
.hero h2{
  font-size:56px;
  margin:0 0 20px 0;
  line-height:1.1;
  font-weight:800;
  letter-spacing:-1px;
  background:linear-gradient(135deg, #ffffff 0%, #BFBFBF 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero p{
  color:var(--muted);
  font-size:18px;
  margin:0 0 32px;
  line-height:1.7;
}
.hero .actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.hero .badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  background:rgba(65,163,23,0.1);
  border:1px solid rgba(65,163,23,0.2);
  border-radius:50px;
  font-size:14px;
  color:var(--brand-green);
  margin-bottom:24px;
}
.trust-indicators{
  color:var(--muted);
  font-size:15px;
  margin:16px 0 32px;
  line-height:1.8;
}

/* Card */
.card{
  background:rgba(255,255,255,0.04);
  padding:var(--card-padding);
  border-radius:var(--radius);
  box-shadow:0 8px 24px rgba(0,0,0,0.4);
  border:1px solid rgba(255,255,255,0.06);
  transition:all 0.3s;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(65,163,23,0.05) 0%, transparent 100%);
  opacity:0;
  transition:opacity 0.2s;
  pointer-events:none;
  z-index:0;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,0.5);
  border-color:rgba(65,163,23,0.2);
}
.card:hover::before{opacity:1;}
.service{
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:flex-start;
  position:relative;
  z-index:1;
  height:100%;
}
.service .dot{
  width:64px;
  height:64px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(65,163,23,0.25) 0%, rgba(65,163,23,0.15) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:var(--brand-green);
  font-size:28px;
  flex-shrink:0;
  border:1px solid rgba(65,163,23,0.4);
  box-shadow:0 4px 12px rgba(65,163,23,0.2);
}
.service strong{
  display:block;
  font-size:20px;
  margin-bottom:12px;
  color:var(--white);
  font-weight:700;
}
.service > div:last-child{
  flex:1;
  display:flex;
  flex-direction:column;
}

/* ========== Grid ========== */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:50px;
}
.grid .card{
  padding:32px;
  display:flex;
  align-items:stretch;
  height:100%;
}

/* Portfolio */
.portfolio{
  margin:80px 0;
  position:relative;
}
.portfolio h3{
  font-size:36px;
  font-weight:800;
  margin-bottom:32px;
  letter-spacing:-0.5px;
}
.projects{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.project{
  height:280px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:24px;
  position:relative;
  overflow:hidden;
  cursor:pointer;
  transition:all 0.3s;
  border:1px solid rgba(255,255,255,0.08);
}
.project::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(65,163,23,0.1) 0%, transparent 100%);
  opacity:0;
  transition:opacity 0.2s;
}
.project:hover{
  transform:translateY(-6px);
  border-color:rgba(65,163,23,0.3);
  box-shadow:0 12px 32px rgba(0,0,0,0.5);
}
.project:hover::before{opacity:1;}
.project-title{
  font-size:20px;
  font-weight:700;
  margin-bottom:8px;
  color:var(--white);
  position:relative;
  z-index:1;
}
.project-desc{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  position:relative;
  z-index:1;
}
.project-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:auto;
  position:relative;
  z-index:1;
}
.tag{
  padding:4px 12px;
  background:rgba(255,255,255,0.08);
  border-radius:20px;
  font-size:12px;
  color:var(--muted);
}

/* About */
.about{
  margin:80px 0;
  padding:60px 0;
}
.about-header{
  text-align:center;
  margin-bottom:48px;
}
.about-header h3{
  font-size:36px;
  font-weight:800;
  margin-bottom:12px;
  letter-spacing:-0.5px;
}
.about-subtitle{
  color:var(--muted);
  font-size:18px;
  margin:0;
}
.about-content-wrapper{
  max-width:800px;
  margin:40px auto 0;
}
.about-card{
  background:rgba(255,255,255,0.04);
  padding:48px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,0.06);
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
  display:flex;
  gap:32px;
  align-items:flex-start;
}
.about-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(65,163,23,0.08) 0%, transparent 100%);
  opacity:0;
  transition:opacity 0.25s;
}
.about-card:hover{
  transform:translateY(-6px);
  border-color:rgba(65,163,23,0.3);
  box-shadow:0 16px 40px rgba(0,0,0,0.4);
}
.about-card:hover::before{
  opacity:1;
}
.about-icon{
  font-size:56px;
  width:100px;
  height:100px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(65,163,23,0.15) 0%, rgba(65,163,23,0.05) 100%);
  border-radius:20px;
  border:1px solid rgba(65,163,23,0.2);
  position:relative;
  z-index:1;
  transition:transform 0.25s;
  flex-shrink:0;
}
.about-card:hover .about-icon{
  transform:scale(1.05) rotate(3deg);
}
.about-text{
  position:relative;
  z-index:1;
  flex:1;
}
.about-text p{
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
  margin-bottom:16px;
}
.about-text p:last-child{
  margin-bottom:0;
}
.about-intro{
  color:var(--white) !important;
  font-size:18px !important;
  font-weight:500;
  margin-bottom:16px !important;
}
.about-intro strong{
  color:var(--brand-green);
  font-weight:700;
}
.about-cta{
  color:var(--white) !important;
  font-weight:500;
  margin-top:20px !important;
}
.stats{
  display:flex;
  gap:32px;
  margin-top:32px;
  flex-wrap:wrap;
}
.stat{
  display:flex;
  flex-direction:column;
}
.stat-number{
  font-size:32px;
  font-weight:800;
  color:var(--brand-green);
  line-height:1;
}
.stat-label{
  font-size:14px;
  color:var(--muted);
  margin-top:4px;
}

/* Process */
.process{
  margin:80px 0;
  padding:60px 0;
}
.process-header{
  text-align:center;
  margin-bottom:48px;
}
.process-header h3{
  font-size:36px;
  font-weight:800;
  margin-bottom:12px;
  letter-spacing:-0.5px;
}
.process-subtitle{
  color:var(--muted);
  font-size:18px;
  margin:0;
}
.process-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:48px;
  position:relative;
}
.process-step{
  position:relative;
  padding:32px 24px;
  background:rgba(255,255,255,0.04);
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,0.06);
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  opacity:0;
  transform:translateY(30px);
}
.process-step.animated{
  animation:fadeInUp 0.3s ease forwards;
}
.process-step[data-step="1"].animated{
  animation-delay:0.05s;
}
.process-step[data-step="2"].animated{
  animation-delay:0.1s;
}
.process-step[data-step="3"].animated{
  animation-delay:0.15s;
}
.process-step[data-step="4"].animated{
  animation-delay:0.2s;
}
.process-step:hover{
  transform:translateY(-6px) scale(1.02);
  border-color:rgba(65,163,23,0.4);
  box-shadow:0 16px 40px rgba(0,0,0,0.4);
  background:rgba(255,255,255,0.06);
}
.process-step-number{
  position:absolute;
  top:16px;
  left:16px;
  font-size:14px;
  font-weight:800;
  color:var(--brand-green);
  opacity:0.6;
  transition:opacity 0.2s;
}
.process-step:hover .process-step-number{
  opacity:1;
}
.process-step-content{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.process-step-icon{
  font-size:40px;
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(65,163,23,0.15) 0%, rgba(65,163,23,0.05) 100%);
  border-radius:18px;
  border:1px solid rgba(65,163,23,0.2);
  transition:all 0.25s;
  position:relative;
}
.process-step:hover .process-step-icon{
  transform:scale(1.1) rotate(3deg);
  background:linear-gradient(135deg, rgba(65,163,23,0.25) 0%, rgba(65,163,23,0.15) 100%);
  box-shadow:0 8px 20px rgba(65,163,23,0.3);
}
.process-step h4{
  font-size:20px;
  font-weight:700;
  margin:0;
  color:var(--white);
  transition:color 0.2s;
}
.process-step:hover h4{
  color:var(--brand-green);
}
.process-step p{
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
  margin:0;
  max-width:200px;
}
.process-step-connector{
  position:absolute;
  top:50%;
  right:-10px;
  width:20px;
  height:2px;
  background:linear-gradient(90deg, rgba(65,163,23,0.4), rgba(65,163,23,0.1));
  transform:translateY(-50%);
  z-index:0;
}
.process-step:last-child .process-step-connector{
  display:none;
}
.process-note{
  margin-top:48px;
  padding:24px 32px;
  background:rgba(65,163,23,0.1);
  border:1px solid rgba(65,163,23,0.2);
  border-radius:16px;
  color:var(--muted);
  font-size:16px;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  transition:all 0.2s;
}
.process-note:hover{
  background:rgba(65,163,23,0.15);
  border-color:rgba(65,163,23,0.3);
  transform:translateY(-2px);
}
.process-note-icon{
  font-size:20px;
}
@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Testimonials */
.testimonials{
  margin:80px 0;
}
.testimonials h3{
  font-size:36px;
  font-weight:800;
  margin-bottom:32px;
  letter-spacing:-0.5px;
}
.testimonial{
  padding:32px;
  background:rgba(255,255,255,0.04);
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.06);
  margin-bottom:24px;
  position:relative;
}
.testimonial::before{
  content:'"';
  position:absolute;
  top:20px;
  left:24px;
  font-size:48px;
  color:var(--brand-green);
  opacity:0.3;
  font-weight:700;
}
.testimonial-text{
  color:var(--white);
  font-size:16px;
  line-height:1.8;
  margin-bottom:16px;
  font-style:italic;
  padding-left:20px;
}
.testimonial-author{
  color:var(--muted);
  font-size:14px;
  padding-left:20px;
}

/* Contact */
.contact{
  padding:60px 0;
}
.contact h3{
  font-size:36px;
  font-weight:800;
  margin-bottom:12px;
  letter-spacing:-0.5px;
  position:relative;
  z-index:1;
}
#status{
  position:relative;
  z-index:1;
  margin-top:16px;
}
form{
  position:relative;
  z-index:1;
}
input,textarea,select{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.03);
  color:var(--white);
  resize:vertical;
  font-family:inherit;
  font-size:15px;
  transition:all 0.3s;
  margin-bottom:16px;
  position:relative;
  z-index:1;
}
input:focus,textarea:focus,select:focus{
  outline:none;
  border-color:var(--brand-green);
  background:rgba(255,255,255,0.05);
  box-shadow:0 0 0 3px rgba(65,163,23,0.1);
}
input::placeholder,textarea::placeholder{
  color:var(--muted);
}
select{
  cursor:pointer;
}
select option{
  background:var(--bg);
  color:var(--white);
}
button.primary{
  background:var(--brand-green);
  color:var(--bg);
  padding:14px 24px;
  border-radius:12px;
  border:none;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  transition:all 0.3s;
  box-shadow:0 4px 12px rgba(65,163,23,0.3);
  position:relative;
  z-index:1;
}
button.primary:hover{
  background:var(--brand-green-hover);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(65,163,23,0.4);
}
button.primary:active{
  transform:translateY(0);
}
.contact-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:24px;
  align-items:center;
}
.contact-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:15px;
  transition:color 0.2s;
}
.contact-links a:hover{
  color:var(--brand-green);
}

footer{
  padding:40px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  color:var(--muted);
  font-size:14px;
  margin-top:60px;
  text-align:center;
}

/* Section Headers */
section h3{
  font-size:36px;
  font-weight:800;
  margin-bottom:32px;
  letter-spacing:-0.5px;
}

/* ========== Responsive ========== */
@media (max-width:980px){
  .hero{padding:60px 0 40px;}
  .hero h2{font-size:42px;}
  .grid{grid-template-columns:repeat(2,1fr)}
  .projects{grid-template-columns:repeat(2,1fr)}
  .about-card{flex-direction:column;text-align:center;padding:40px 32px}
  .about-icon{margin:0 auto}
  .process-steps{grid-template-columns:repeat(2,1fr);gap:24px}
  .process-step-connector{display:none}
  .hamburger{
    display:flex;
  }
  header{
    justify-content:space-between;
    padding:14px 24px;
    width:calc(100% - 32px);
    top:8px;
  }
  .logo{
    height:44px;
    max-width:110px;
    min-width:70px;
  }
  nav.nav-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:var(--bg);
    border-left:1px solid rgba(255,255,255,0.1);
    display:flex;
    flex-direction:column;
    gap:0;
    padding:80px 32px 32px;
    transition:right 0.3s ease;
    z-index:100;
    box-shadow:-4px 0 20px rgba(0,0,0,0.5);
  }
  nav.nav-menu.active{
    right:0;
  }
  nav.nav-menu::before{
    content:'';
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:rgba(0,0,0,0.5);
    opacity:0;
    pointer-events:none;
    transition:opacity 0.3s ease;
    z-index:99;
  }
  nav.nav-menu.active::before{
    opacity:1;
    pointer-events:all;
  }
  nav.nav-menu a{
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,0.05);
    font-size:16px;
    width:100%;
  }
  nav.nav-menu a:not(.cta)::after{
    display:none;
  }
  nav.nav-menu .cta{
    margin-top:16px;
    text-align:center;
    border:none;
    padding:14px 20px;
  }
}
@media (max-width:768px){
  header{
    padding:12px 20px;
    width:calc(100% - 24px);
    border-radius:16px;
    top:8px;
  }
  .logo{
    height:42px;
    max-width:100px;
    min-width:65px;
  }
  nav.nav-menu{
    width:260px;
    padding:70px 24px 24px;
  }
}
@media (max-width:560px){
  .grid{grid-template-columns:1fr}
  .projects{grid-template-columns:1fr}
  .hero h2{font-size:32px;}
  .hero p{font-size:16px;}
  .card{padding:20px;}
  .project{height:240px;}
  section h3{font-size:28px;}
  .about-card{padding:32px 24px}
  .about-icon{width:80px;height:80px;font-size:48px}
  .process-steps{grid-template-columns:1fr;gap:32px}
  .process-step-connector{display:none}
  .process-step{padding:28px 20px}
  header{
    padding:10px 16px;
    width:calc(100% - 20px);
    border-radius:14px;
    top:6px;
    gap:8px;
    justify-content:space-between;
  }
  .logo{
    height:40px;
    max-width:95px;
    min-width:60px;
  }
  .brand{
    gap:8px;
  }
  nav.nav-menu{
    width:240px;
    padding:60px 20px 20px;
  }
}
@media (max-width:400px){
  header{
    padding:10px 14px;
    width:calc(100% - 16px);
  }
  .logo{
    height:38px;
    max-width:85px;
    min-width:55px;
  }
}
@media (max-width:320px){
  header{
    padding:8px 12px;
    width:calc(100% - 12px);
  }
  .logo{
    height:36px;
    max-width:75px;
    min-width:50px;
  }
}

/* Small helpers */
.muted{color:var(--muted)}
.pill{
  background:rgba(255,255,255,0.06);
  padding:10px 18px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  color:var(--white);
  border:1px solid rgba(255,255,255,0.1);
  transition:all 0.3s;
  display:inline-block;
}
.pill:hover{
  background:rgba(255,255,255,0.1);
  transform:translateY(-2px);
}
.section-divider{
  height:1px;
  width:100%;
  max-width:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  margin:60px 0;
}

