/* ===== Tokens ===== */
:root{
  --bg: #0b0d0b;
  --bg-alt: #101310;
  --surface: #151815;
  --surface-2: #1c201c;
  --border: #262b25;
  --text: #f4f6f3;
  --text-dim: #b9c0b8;
  --text-faint: #7c857b;
  --green: #7ac93c;
  --green-light: #9fe25f;
  --green-dark: #4f8a24;
  --silver: #c7cdc5;
  --radius: 10px;
  --shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
  --container: 1160px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4{ margin: 0; font-weight: 800; letter-spacing: -0.01em; }
p{ margin: 0; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.icon{ width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: #0b0d0b;
}
.btn-primary:hover{ filter: brightness(1.08); }
.btn-outline{
  border-color: rgba(244,246,243,0.35);
  color: var(--text);
}
.btn-outline:hover{ border-color: var(--green); color: var(--green-light); }
.btn-ghost{
  color: var(--text-dim);
  padding: 8px 14px;
}
.btn-ghost:hover{ color: var(--green-light); }
.btn-lg{ padding: 14px 28px; font-size: 1rem; }
.btn-block{ width: 100%; }

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,246,243,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,13,11,0.1);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand{ display: flex; align-items: center; }
.brand-logo{ height: 56px; width: auto; }

.nav-wrapper{ display: flex; align-items: center; gap: 28px; }
.main-nav{ display: flex; align-items: center; gap: 28px; }
.main-nav a{
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bg);
  transition: color 0.15s ease;
}
.main-nav a:hover{ color: var(--green-dark); }

.header-actions{ display: flex; align-items: center; gap: 8px; }
.header-call{ display: flex; }
.site-header .btn-ghost{ color: var(--bg); }
.site-header .btn-ghost:hover{ color: var(--green-dark); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(11,13,11,0.15);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--bg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero{
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
}
.hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(122,201,60,0.16), transparent 60%),
    radial-gradient(50% 50% at 5% 100%, rgba(122,201,60,0.08), transparent 60%),
    var(--bg);
  z-index: -1;
}
.hero-split{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-inner{ max-width: 620px; }
.hero-media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3.6;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(122,201,60,0.18), rgba(11,13,11,0.15) 40%, rgba(11,13,11,0.55));
  pointer-events: none;
  z-index: 1;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  width: 100%;
  height: 100%;
}
.hero-grid-img{
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.hero-grid-img:nth-child(1){ object-position: center 30%; }
.hero-grid-img:nth-child(2){ object-position: center 40%; }
.hero-grid-img:nth-child(3){ object-position: center; }
.hero-grid-img:nth-child(4){ object-position: center; }
.eyebrow{
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.hero h1{
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  margin-bottom: 20px;
}
.hero-sub{
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-ctas{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges{
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--text-faint);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-badges li{ display: flex; align-items: center; gap: 8px; }
.hero-badges li::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ===== Trust bar ===== */
.trust-bar{
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-bar-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.trust-bar .dot{ color: var(--green); }

/* ===== Sections ===== */
.section{ padding: 88px 0; }
.section-alt{ background: var(--bg-alt); }
.section-eyebrow{
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-title{
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  max-width: 720px;
}
.section-sub{
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 44px;
}

/* ===== Services ===== */
.services-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.service-icon{
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122,201,60,0.18), rgba(122,201,60,0.04));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg{
  width: 26px; height: 26px;
  fill: none; stroke: var(--green-light);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3{ font-size: 1.3rem; margin-bottom: 8px; }
.service-card > p{ color: var(--text-dim); margin-bottom: 20px; }
.service-list{ display: flex; flex-direction: column; gap: 10px; }
.service-list li{
  position: relative;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.service-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--green);
}

/* ===== How it works ===== */
.steps-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step-num{
  display: inline-block;
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 2.4rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3{ font-size: 1.1rem; margin-bottom: 8px; }
.step p{ color: var(--text-dim); font-size: 0.92rem; }

/* ===== Why us ===== */
.why-grid{
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.why-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.why-item{ display: flex; gap: 14px; align-items: flex-start; }
.why-icon{
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item h4{ font-size: 1rem; margin-bottom: 4px; }
.why-item p{ color: var(--text-dim); font-size: 0.9rem; }
.why-media{
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, rgba(122,201,60,0.12), transparent 70%);
  border-radius: var(--radius);
  padding: 40px;
}
.why-logo{ max-width: 320px; width: 100%; }

/* ===== Service area ===== */
.service-area-inner{ max-width: 780px; }
.area-list{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.area-list li{
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.area-note{ color: var(--text-faint); font-size: 0.95rem; }
.area-note a{ color: var(--green-light); font-weight: 600; }

/* ===== Portfolio ===== */
.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item{
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.portfolio-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-item.placeholder{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px dashed var(--border);
  color: var(--text-faint);
  font-size: 0.85rem;
  font-weight: 600;
}
.portfolio-item.placeholder .icon{
  width: 32px; height: 32px;
  fill: none; stroke: var(--text-faint);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

/* ===== Contact ===== */
.contact-inner{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-copy .section-sub{ margin-bottom: 32px; }
.contact-direct{ display: flex; flex-direction: column; gap: 14px; }
.contact-direct-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.contact-direct-item:hover{ border-color: var(--green); color: var(--green-light); }

.contact-form{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.contact-form-lede{
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== Footer ===== */
.site-footer{
  background: rgb(244,246,243);
  border-top: 1px solid rgba(11,13,11,0.1);
  padding-top: 48px;
}
.footer-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
}
.footer-brand{ display: flex; align-items: center; gap: 14px; }
.footer-logo{ height: 44px; }
.footer-brand p{ color: rgba(11,13,11,0.55); font-size: 0.85rem; }
.footer-nav{ display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a{ color: var(--bg); font-size: 0.88rem; font-weight: 600; }
.footer-nav a:hover{ color: var(--green-dark); }
.footer-contact{ display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.footer-contact a{ color: var(--bg); font-size: 0.88rem; }
.footer-contact a:hover{ color: var(--green-dark); }
.footer-bottom{
  border-top: 1px solid rgba(11,13,11,0.1);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(11,13,11,0.55);
  font-size: 0.8rem;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-verse{ color: var(--green-dark); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero-split{ grid-template-columns: 1fr; gap: 32px; }
  .hero-inner{ max-width: none; }
  .hero-media{ order: -1; aspect-ratio: 16 / 9; }
  .why-grid{ grid-template-columns: 1fr; }
  .why-media{ order: -1; padding: 24px; }
  .why-logo{ max-width: 220px; }
  .contact-inner{ grid-template-columns: 1fr; }
  .steps-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px){
  .header-inner{ position: relative; justify-content: flex-end; }
  .brand{ position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .nav-wrapper{ display: none; }
  .nav-toggle{ display: flex; }
  .nav-wrapper.open{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgb(244,246,243);
    border-bottom: 1px solid rgba(11,13,11,0.1);
    padding: 20px 24px 24px;
    gap: 20px;
  }
  .nav-wrapper.open .main-nav{
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .nav-wrapper.open .header-actions{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .services-grid{ grid-template-columns: 1fr; }
  .steps-grid{ grid-template-columns: 1fr; }
  .why-list{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{ flex-direction: column; align-items: flex-start; }
  .footer-contact{ align-items: flex-start; }
  .footer-bottom{ flex-direction: column; gap: 6px; }
}

@media (max-width: 520px){
  .hero{ padding: 72px 0 56px; }
  .section{ padding: 64px 0; }
  .brand-logo{ height: 44px; }
}
