:root {
  --bg: #101114;
  --bg-soft: #17191e;
  --card: #1d2026;
  --text: #f5f4ef;
  --muted: #a3a5ad;
  --accent: #d8ff45;
  --border: rgba(255,255,255,.11);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .035;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.03em; }
.logo-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-weight: 900;
}
.header-link {
  color: var(--muted);
  font-size: 14px;
  transition: .2s;
}
.header-link:hover { color: var(--accent); }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
  padding-block: 80px;
}
.eyebrow, .section-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 32px; height: 2px; background: var(--accent); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 28px;
  font-size: clamp(52px, 7.2vw, 98px);
  line-height: .95;
  letter-spacing: -.075em;
}
h1 em { color: var(--accent); font-style: normal; }
.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--accent); color: #111; }
.primary:hover { background: #e2ff77; }
.ghost { border-color: var(--border); background: rgba(255,255,255,.025); }
.ghost:hover { border-color: rgba(255,255,255,.25); }

.hero-points { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 40px; color: var(--muted); font-size: 13px; }
.hero-points span::before { content: "✓"; color: var(--accent); margin-right: 7px; }

.hero-card { position: relative; }
.device {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(145deg, #292d36, #15171c);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.device-top { display: flex; gap: 7px; padding: 4px 4px 14px; }
.device-top i { width: 8px; height: 8px; border-radius: 50%; background: #4a4f5b; }
.device-screen {
  min-height: 390px;
  padding: 42px 34px;
  border-radius: 10px;
  background:
    linear-gradient(rgba(216,255,69,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216,255,69,.035) 1px, transparent 1px),
    #0b0d0d;
  background-size: 24px 24px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
  line-height: 2.1;
}
.terminal-line span, .success { color: var(--accent); }
.muted { color: #71757f; }
.cursor { width: 9px; height: 18px; margin-top: 8px; background: var(--accent); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.sticker {
  position: absolute;
  padding: 10px 15px;
  background: var(--text);
  color: #111;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 5px 5px 0 #000;
}
.sticker-one { top: -25px; right: 35px; transform: rotate(7deg); }
.sticker-two { bottom: -22px; left: -20px; color: #111; background: var(--accent); transform: rotate(-6deg); }

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--accent);
  color: #111;
  transform: rotate(-1deg) scale(1.02);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 26px;
  padding: 14px 0;
  font-weight: 900;
  letter-spacing: .06em;
  animation: ticker 26s linear infinite;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.services { padding-block: 150px 110px; }
.section-heading { display: grid; grid-template-columns: .55fr 1.45fr; margin-bottom: 60px; }
.section-heading p { color: var(--accent); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.section-heading h2, .request-copy h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.06em;
}
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  transition: transform .2s, border-color .2s;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(216,255,69,.5); }
.service-number { display: inline-block; margin-bottom: 58px; color: var(--accent); font-size: 12px; font-weight: 800; }
.service-card h3 { margin-bottom: 12px; font-size: 30px; letter-spacing: -.04em; }
.service-card p { max-width: 520px; margin-bottom: 0; color: var(--muted); }
.accent-card { background: var(--accent); color: #111; }
.accent-card .service-number, .accent-card p { color: #313616; }

.process { padding-block: 80px 150px; }
.section-heading.compact { grid-template-columns: 1fr; gap: 10px; }
.section-heading.compact h2 { font-size: clamp(40px, 5vw, 64px); }
.steps { border-top: 1px solid var(--border); }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  font-size: clamp(19px, 2.4vw, 28px);
  letter-spacing: -.025em;
}
.step b { color: var(--accent); font-size: 13px; padding-top: 8px; }

.request-section { padding-block: 120px; background: #ecebe4; color: #111; }
.request-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.request-copy > p:not(.section-label) { color: #5e605d; font-size: 17px; max-width: 480px; margin-top: 28px; }
.request-copy .section-label { color: #5d651d; }
.request-note {
  max-width: 520px;
  margin-top: 38px;
  padding: 18px;
  border-left: 3px solid #111;
  background: rgba(0,0,0,.045);
  color: #4d4f4d;
}
.request-form {
  padding: 34px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(21,23,18,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.request-form label { display: block; margin-bottom: 18px; }
.request-form label > span:first-child { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid #d7d7d2;
  border-radius: 3px;
  background: #f8f8f5;
  color: #111;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input, select { height: 52px; padding: 0 14px; }
textarea { padding: 14px; resize: vertical; min-height: 140px; }
input:focus, textarea:focus, select:focus { border-color: #8ca500; box-shadow: 0 0 0 3px rgba(177,211,0,.13); }
.consent { display: flex !important; align-items: flex-start; gap: 10px; color: #6c6e69; font-size: 12px; }
.consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; }
.submit-button { width: 100%; border: 0; }
.submit-button svg { width: 19px; margin-left: 10px; fill: none; stroke: currentColor; stroke-width: 2; }
.submit-button[disabled] { opacity: .6; cursor: wait; transform: none; }
.form-status { min-height: 22px; margin-top: 14px; font-size: 13px; font-weight: 700; }
.form-status.success { color: #386b00; }
.form-status.error { color: #a51e1e; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}
.footer p { margin: 0; text-align: center; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 80px; }
  .hero-card { max-width: 580px; width: 100%; margin-inline: auto; }
  .section-heading, .request-layout { grid-template-columns: 1fr; gap: 35px; }
  .request-layout { gap: 55px; }
  .footer { grid-template-columns: 1fr; justify-items: start; padding-block: 35px; }
  .footer p { text-align: left; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1180px); }
  .header { min-height: 70px; }
  .header-link { display: none; }
  .hero { padding-block: 64px 90px; }
  h1 { font-size: clamp(47px, 15vw, 68px); }
  .hero-text { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .device-screen { min-height: 310px; padding: 28px 20px; font-size: 12px; }
  .service-grid, .form-row { grid-template-columns: 1fr; }
  .services { padding-block: 110px 80px; }
  .service-card { min-height: 240px; }
  .request-section { padding-block: 80px; }
  .request-form { padding: 22px 16px; margin-inline: -2px; }
  .step { grid-template-columns: 46px 1fr; }
}


.header-nav { display: flex; align-items: center; gap: 24px; }

.contacts-section {
  padding-block: 120px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 85% 20%, rgba(216,255,69,.09), transparent 28%),
    var(--bg-soft);
}
.contacts-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
  align-items: start;
}
.contacts-heading h2 {
  margin-bottom: 26px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
}
.contacts-heading > p:last-child {
  max-width: 460px;
  color: var(--muted);
  font-size: 17px;
}
.contacts-grid {
  display: grid;
  gap: 14px;
}
.contact-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  transition: transform .2s, border-color .2s, background .2s;
}
a.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(216,255,69,.55);
  background: rgba(216,255,69,.045);
}
.contact-card-phone {
  border-color: rgba(216,255,69,.38);
  background: var(--accent);
  color: #111;
}
a.contact-card-phone:hover {
  border-color: var(--accent);
  background: #e2ff77;
}
.contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 22px;
  opacity: .9;
}
.contact-content {
  display: flex;
  flex-direction: column;
}
.contact-content small {
  margin-bottom: 3px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 800;
}
.contact-card-phone .contact-content small { color: #50551d; }
.contact-content strong {
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: -.03em;
}
.contact-content em {
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}
.contact-card-phone .contact-content em { color: #555a20; }
.contact-arrow {
  font-size: 24px;
  opacity: .6;
}
.footer a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .contacts-layout { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 620px) {
  .header-nav { gap: 14px; }
  .header-nav .header-link:first-child { display: none; }
  .contacts-section { padding-block: 80px; }
  .contact-card {
    grid-template-columns: 44px 1fr auto;
    min-height: 116px;
    padding: 18px 14px;
    gap: 12px;
  }
  .contact-icon { width: 40px; height: 40px; font-size: 18px; }
  .contact-content strong { font-size: 17px; }
  .contact-arrow { font-size: 19px; }
}


/* Mobile contact-card alignment fix */
.contact-card {
  min-width: 0;
  overflow: hidden;
}
.contact-content {
  min-width: 0;
}
.contact-content strong,
.contact-content em,
.contact-content small {
  overflow-wrap: anywhere;
}
.contact-icon,
.contact-arrow {
  flex-shrink: 0;
}

@media (max-width: 620px) {
  .contact-card {
    grid-template-columns: 40px minmax(0, 1fr) 22px;
    align-items: center;
    column-gap: 12px;
    padding: 18px 14px;
    overflow: hidden;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    margin: 0;
    place-self: center;
  }

  .contact-content {
    min-width: 0;
    width: 100%;
  }

  .contact-content strong {
    display: block;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .contact-content em {
    font-size: 12px;
    line-height: 1.35;
  }

  .contact-arrow {
    width: 22px;
    text-align: center;
    place-self: center;
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .contact-card {
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    column-gap: 10px;
    padding: 16px 12px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .contact-content strong {
    font-size: 15px;
  }
}
