:root {
  --bg: #070909;
  --bg-soft: #0e1211;
  --panel: rgba(17, 22, 20, 0.88);
  --panel-strong: #101412;
  --text: #f5f1e8;
  --muted: #b8c0b9;
  --line: rgba(145, 255, 42, 0.14);
  --green: #86d313;
  --green-soft: #b6ea66;
  --red: #ce211b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(134, 211, 19, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(206, 33, 27, 0.12), transparent 24%),
    linear-gradient(180deg, #050606 0%, #0a0d0c 48%, #070909 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header,
.hero,
.trust-strip,
.service-grid,
.highlight,
.process-grid,
.contact-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 28px;
  background: rgba(10, 13, 12, 0.8);
  backdrop-filter: blur(16px);
  border-radius: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.brand img {
  width: clamp(90px, 9vw, 130px);
  height: auto;
}
.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #071003;
  background: linear-gradient(180deg, #9cf329 0%, #74c80d 100%);
}

.button-secondary {
  border-color: rgba(245, 241, 232, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 42px;
  background:
    radial-gradient(circle at 80% 20%, rgba(134, 211, 19, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(19, 24, 22, 0.96), rgba(11, 14, 13, 0.96));
  border-radius: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-soft);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.highlight h2,
.contact h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.96;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

.hero-text,
.section-heading p,
.highlight-copy p,
.contact-card p,
.service-card p,
.process-grid p,
.trust-strip p {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-card-main {
  inset: 24px 0 90px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 34px);
  overflow: hidden;
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card-note,
.hero-card-badge {
  padding: 18px 20px;
  backdrop-filter: blur(14px);
}

.hero-card-note {
  left: 0;
  right: 110px;
  bottom: 24px;
}

.hero-card-badge {
  top: 0;
  right: 0;
  max-width: 220px;
}

.hero-card strong,
.mini-stat-number,
.service-card h3,
.process-grid h3,
.trust-strip strong {
  display: block;
  font-size: 1.1rem;
}

.hero-card span,
.mini-stat-label {
  color: var(--muted);
  line-height: 1.45;
}

.trust-strip,
.highlight,
.contact-card {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(15, 19, 18, 0.9), rgba(10, 13, 12, 0.88));
  border-radius: 28px;
}

.trust-strip {
  grid-template-columns: repeat(4, 1fr);
}

.section-heading {
  max-width: 760px;
  margin: 64px 0 28px;
}

.section-heading h2,
.highlight h2,
.contact h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.service-grid,
.process-grid {
  display: grid;
  gap: 18px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.process-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20, 26, 24, 0.92), rgba(12, 15, 14, 0.92));
  box-shadow: var(--shadow);
}

.service-icon,
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(134, 211, 19, 0.13);
  color: var(--green-soft);
  font-weight: 800;
}

.highlight {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.highlight-panel {
  display: grid;
  gap: 16px;
}

.brand-board {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.mini-stat {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.mini-stat-number {
  font-size: 1.6rem;
  color: var(--green-soft);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--green-soft);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1100px) {
  .hero,
  .highlight,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .trust-strip,
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 24px, 1200px);
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.95rem;
  }

  .hero {
    padding: 24px;
  }

  .hero-card-main {
    inset: 18px 0 88px 0;
  }

  .hero-card-note {
    right: 56px;
  }

  .trust-strip,
  .service-grid,
  .process-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-card-main {
    inset: 0 0 110px 0;
  }

  .hero-card-note,
  .hero-card-badge {
    position: absolute;
    max-width: none;
  }

  .hero-card-note {
    right: 0;
    bottom: 0;
  }

  .hero-card-badge {
    top: 10px;
    right: 10px;
    left: auto;
    width: min(180px, calc(100% - 20px));
  }
}
