@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black: #0b0d0c;
  --ink: #151817;
  --muted: #66706c;
  --line: #e5e9e7;
  --soft: #f5f7f6;
  --green: #16a765;
  --green-dark: #0d824d;
  --white: #ffffff;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229,233,231,.8);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 124px; height: 58px; object-fit: contain; mix-blend-mode: multiply; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--green-dark); }
.nav-cta {
  background: var(--black);
  color: white !important;
  padding: 11px 18px;
  border-radius: 999px;
}
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--black); margin: 5px 0; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(22,167,101,.10), transparent 28%),
    linear-gradient(180deg, #fbfcfb 0%, #fff 100%);
}
.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 50px;
  padding: 72px 0 80px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3 { margin-top: 0; letter-spacing: -.04em; line-height: 1.08; }
h1 { font-size: clamp(46px, 6vw, 76px); margin-bottom: 24px; max-width: 760px; }
h1 span { color: var(--green-dark); }
h2 { font-size: clamp(34px, 4vw, 50px); margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 10px; }
.hero-text { max-width: 700px; color: #56615c; font-size: 16px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--black); color: #fff; }
.btn-secondary { border: 1px solid var(--line); background: #fff; }
.hero-meta { display: flex; gap: 28px; margin-top: 28px; color: var(--muted); font-size: 13px; }
.hero-meta b { color: var(--ink); margin-right: 5px; }

.hero-image-wrap { position: relative; padding: 18px 0 30px 20px; }
.image-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 10%;
  top: 13%;
  background: rgba(22,167,101,.12);
  filter: blur(70px);
  border-radius: 50%;
}
.hero-image {
  position: relative;
  width: 100%;
  max-height: 630px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(15, 23, 19, .13);
}
.floating-card {
  position: absolute;
  left: 0;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(15,23,19,.12);
  border-radius: 14px;
  padding: 14px 17px;
}
.floating-card strong { display: block; font-size: 13px; }
.floating-card small { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; }
.dot { width: 9px; height: 9px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(22,167,101,.12); }

.section { padding: 110px 0; }
.intro-section { border-top: 1px solid var(--line); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.section-copy { color: var(--muted); font-size: 17px; }
.section-copy p { margin-top: 0; margin-bottom: 22px; }
.section-copy strong { color: var(--ink); }

.services-section { background: var(--soft); }
.section-heading { max-width: 700px; margin-bottom: 44px; }
.section-heading > p:last-child { color: var(--muted); margin: 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(20,30,25,.03);
}
.service-card.featured { border-color: rgba(22,167,101,.35); box-shadow: 0 18px 45px rgba(22,167,101,.08); }
.service-number { font-size: 12px; color: var(--muted); font-weight: 800; letter-spacing: .1em; }
.service-tag { margin: 28px 0 9px; color: var(--green-dark); text-transform: uppercase; font-size: 10px; letter-spacing: .12em; font-weight: 800; }
.price { font-size: 30px; font-weight: 800; letter-spacing: -.04em; margin-bottom: 16px; }
.price span { color: var(--muted); font-size: 12px; letter-spacing: 0; }
.service-card p { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.service-card a { margin-top: auto; color: var(--green-dark); font-size: 13px; font-weight: 800; }

.technology-section { padding-top: 90px; }
.technology-card {
  background: var(--black);
  color: white;
  border-radius: 26px;
  padding: 55px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}
.technology-card .eyebrow { color: #61d39d; }
.technology-card h2 { max-width: 580px; }
.technology-copy > p:not(.eyebrow) { color: #adb8b3; max-width: 620px; }
.text-link { display: inline-block; margin-top: 10px; color: #7ae0ae; font-weight: 700; font-size: 14px; }
.tech-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.tech-stats div { border-left: 1px solid rgba(255,255,255,.16); padding: 14px 14px 14px 20px; }
.tech-stats strong { display: block; font-size: 28px; }
.tech-stats span { color: #9da9a4; font-size: 11px; }

.contact-section { background: #f1f5f3; padding: 95px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-grid > div:first-child > p:not(.eyebrow) { max-width: 570px; color: var(--muted); }
.contact-details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.contact-details > * { display: block; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.contact-details > *:last-child { border-bottom: 0; }
.contact-details a:hover strong { color: var(--green-dark); }
.contact-label { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 800; margin-bottom: 4px; }
.contact-details strong { font-size: 16px; transition: color .2s ease; }

footer { background: #0b0d0c; color: #aab4af; }
.footer-wrap { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-wrap img { width: 105px; height: 52px; object-fit: contain; background: white; border-radius: 8px; }
.footer-wrap p { margin: 0; font-size: 12px; }

@media (max-width: 900px) {
  .nav { gap: 18px; }
  .hero-grid, .two-col, .contact-grid, .technology-card { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 55px; }
  .hero-image-wrap { max-width: 700px; margin: 0 auto; width: 100%; padding-left: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .technology-card { gap: 35px; }
}

@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 105px; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 18px 50px rgba(0,0,0,.10);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; border-radius: 10px; }
  .nav a:hover { background: var(--soft); }
  .nav-cta { text-align: center; margin-top: 5px; }
  h1 { font-size: 45px; }
  .hero-grid { min-height: auto; padding: 48px 0 70px; gap: 35px; }
  .hero-text { font-size: 14px; }
  .hero-meta { gap: 16px; flex-wrap: wrap; }
  .floating-card { left: 10px; }
  .section { padding: 75px 0; }
  .two-col { gap: 28px; }
  h2 { font-size: 35px; }
  .technology-card { padding: 35px 25px; border-radius: 20px; }
  .tech-stats { grid-template-columns: 1fr; }
  .contact-section { padding: 70px 0; }
  .contact-grid { gap: 35px; }
  .footer-wrap { flex-direction: column; justify-content: center; padding: 20px 0; text-align: center; }
}
