:root {
  --bg: #060606;
  --card: #101010;
  --card-2: #161616;
  --text: #f5f5f5;
  --muted: #c6c6c6;
  --green: #73d53b;
  --green-dark: #3ca521;
  --line: rgba(255,255,255,.08);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(115,213,59,.18), transparent 24%),
    radial-gradient(circle at left center, rgba(115,213,59,.08), transparent 28%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(6,6,6,.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  min-width: 0;
}

.brand img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 14px;
  background: linear-gradient(180deg, #101010, #060606);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.brand-text small {
  color: var(--green);
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.menu a {
  color: #ffffff;
  font-weight: 700;
  font-size: .95rem;
}

.menu a:hover { color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: .2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #041002;
  box-shadow: 0 12px 24px rgba(115,213,59,.24);
}

.btn-secondary {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn:hover { transform: translateY(-2px); }

.hero {
  padding: 76px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(115,213,59,.08);
  border: 1px solid rgba(115,213,59,.25);
  color: #bff49f;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
  margin: 0 0 18px;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: .95;
  margin: 0 0 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-title .accent {
  color: var(--green);
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 58ch;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 10px;
}

.stat {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.stat strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.2;
}

.stat span {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, #111 0%, #090909 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(115,213,59,.24), transparent 70%);
}

.logo-panel {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-panel img {
  width: 100%;
  height: 100%;
  min-height: 486px;
  object-fit: cover;
  display: block;
}

.logo-panel p {
  display: none;
}

section {
  padding: 38px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.7;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  height: 100%;
}

.card .icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(115,213,59,.18), rgba(115,213,59,.08));
  color: var(--green);
  font-size: 1.6rem;
  font-weight: 900;
  border: 1px solid rgba(115,213,59,.18);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.7;
}

.card ul {
  padding-left: 18px;
  margin: 0;
}

.about {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: #d9d9d9;
  font-weight: 700;
  font-size: .92rem;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .09em;
}

.contact-item span,
.contact-item a {
  color: var(--text);
  line-height: 1.6;
  font-size: 1.02rem;
}

.cta {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(115,213,59,.15), rgba(255,255,255,.02));
  border: 1px solid rgba(115,213,59,.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.location-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: stretch;
}

.map-card {
  min-height: 420px;
  padding: 0;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer {
  padding: 26px 0 42px;
  color: #bcbcbc;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #bcbcbc;
  font-weight: 700;
}

.legal-links a:hover {
  color: var(--green);
}

.mobile-call-button {
  display: none;
}

.mobile-header-call {
  display: none;
}

@media (max-width: 1024px) {
  .hero-grid,
  .about,
  .contact-box,
  .location-section {
    grid-template-columns: 1fr;
  }

  .stats,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    min-height: 420px;
  }

  .logo-panel img {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .menu {
    display: none;
  }

  .nav {
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-text div {
    font-size: 1rem;
  }

  .brand-text small {
    font-size: .68rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-title {
    font-size: 2.9rem;
  }

  .stats,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 280px;
  }

  .logo-panel img {
    min-height: 280px;
  }

  .stat {
    min-height: auto;
  }

  .cta {
    padding: 22px;
  }

  .mobile-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999;
    min-width: 64px;
    width: 64px;
    height: 64px;
    padding: 0;
    font-size: 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.08);
  }

  .mobile-call-button:hover {
    transform: translateY(-2px);
  }

  .mobile-header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    min-width: 122px;
    height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.08);
  }

  .mobile-header-call:hover {
    transform: translateY(-2px);
  }
}