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

:root {
  --bg: #0d0f12;
  --bg-alt: #11141a;
  --card: #161a22;
  --card-border: rgba(255,255,255,.06);
  --green: #9AE600;
  --green-dim: rgba(154,230,0,.12);
  --green-glow: rgba(154,230,0,.06);
  --white: #f5f5f5;
  --gray: #8a8f9a;
  --muted: #1e222b;
  --max-w: 1100px;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
  font-size: 15px;
  background-image:
    radial-gradient(ellipse 1200px 600px at 50% -200px, var(--green-glow), transparent 70%),
    radial-gradient(ellipse 800px 400px at 80% 100px, rgba(100,140,255,.03), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

/* ── EYEBROW BADGE ──────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(154,230,0,.15);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,15,18,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  transition: background .3s;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
}

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  transition: color .2s;
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--green);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(154,230,0,.2);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid rgba(154,230,0,.3);
}

.btn-outline:hover {
  background: var(--green-dim);
  box-shadow: 0 8px 30px rgba(154,230,0,.1);
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 64px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero .container { width: 100%; position: relative; z-index: 1; }

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 800px;
  margin: 0 auto 24px;
  letter-spacing: -1px;
}

.hero h1 span { color: var(--green); }

.hero p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-logo-wrap {
  display: block;
  max-width: 180px;
  margin: 40px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.hero-logo {
  display: block;
  width: calc(100% + 8px);
  margin-left: -4px;
  margin-top: -2px;
  margin-bottom: -2px;
}

/* ── PAGE HERO (shorter, for subpages) ──────────── */
.page-hero {
  min-height: auto;
  padding: 140px 0 80px;
}

.page-hero::after { display: none; }

/* ── SECTION COMMON ──────────────────────────────── */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-title span { color: var(--green); }

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.section-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,230,0,.2), transparent);
}

/* ── CONTENT CARD ────────────────────────────────── */
.content-card {
  background: linear-gradient(to bottom, rgba(22,26,34,.9), rgba(22,26,34,.5));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.content-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--green);
}

.content-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--white);
}

.content-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.content-card p:last-child { margin-bottom: 0; }

.content-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.content-card ul li {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.content-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.content-card .highlight {
  color: var(--white);
  font-weight: 600;
}

/* ── STEPS ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  background: linear-gradient(to bottom, rgba(22,26,34,.9), rgba(22,26,34,.5));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: border-color .3s, transform .3s;
}

.step:hover {
  border-color: rgba(154,230,0,.15);
  transform: translateY(-2px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-dim);
  color: var(--green);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.step h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ── SERVICE CARDS (homepage) ────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: linear-gradient(to bottom, rgba(22,26,34,.9), rgba(22,26,34,.5));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}

.service-card:hover {
  border-color: rgba(154,230,0,.2);
  transform: translateY(-3px);
}

.service-card .service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .btn { font-size: 0.85rem; padding: 10px 24px; }

/* ── ABOUT ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.about-text h3 span { color: var(--green); }

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(to top, rgba(13,15,18,.4), transparent 40%);
  pointer-events: none;
}

.about-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ── WHY US ──────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: linear-gradient(to bottom, rgba(22,26,34,.9), rgba(22,26,34,.5));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .3s, transform .3s;
}

.why-card:hover {
  border-color: rgba(154,230,0,.15);
  transform: translateY(-2px);
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.why-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.why-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ── CONTACT / CTA ───────────────────────────────── */
.cta { text-align: center; }

.cta-box {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(22,26,34,.9), rgba(22,26,34,.5));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.cta p {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  transition: border-color .3s, transform .2s;
  width: 100%;
  max-width: 400px;
}

.contact-link:hover {
  border-color: rgba(154,230,0,.3);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input {
  padding: 14px 16px;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: var(--muted);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .2s;
}

.contact-form input::placeholder { color: #555d6a; }
.contact-form input:focus { border-color: rgba(154,230,0,.4); }

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
}

#form-msg { margin-top: 16px; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  border-top: 1px solid var(--card-border);
  padding: 48px 0 28px;
  background: var(--bg);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer span { font-size: 0.8rem; color: var(--gray); }
footer .footer-brand { color: var(--green); font-weight: 600; font-size: 0.85rem; }

.footer-full {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-company { font-size: 0.8rem; color: var(--gray); }

.footer-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-link {
  font-size: 0.8rem;
  color: var(--gray);
  transition: color .2s;
}

.footer-link:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ── SCROLL ANIMATION ───────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in.slide-out {
  opacity: 0;
  transform: translateX(-60px);
}

/* ── TWO-COL LAYOUT (subpages) ───────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(13,15,18,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
  }

  .nav-links.open { max-height: 400px; }

  .nav-links li { width: 100%; text-align: center; }

  .nav-links a {
    display: block;
    padding: 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--card-border);
  }

  .steps { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }

  .about-photo { height: 360px; }
  .cta-box { padding: 32px 24px; }
  .content-card { padding: 28px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .about-photo { height: 300px; }
}
