:root {
  --bg: #06080d;
  --bg-soft: #0c1119;
  --panel: #101621;
  --panel-2: #151c28;
  --text: #f3f4f6;
  --muted: #a7afbb;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #d62f2f;
  --accent-soft: rgba(214, 47, 47, 0.14);
  --accent-line: rgba(214, 47, 47, 0.35);
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

#services,
#examples,
#process,
#about,
#contact {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top, #171d29 0%, #080a10 38%),
    linear-gradient(180deg, #080a10 0%, #05070b 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(6, 8, 13, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-sub {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}

.nav-links a {
  font-weight: 600;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.button:hover {
  background: rgba(214, 47, 47, 0.14);
  border-color: rgba(214, 47, 47, 0.55);
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.nav-cta {
  border-color: rgba(214, 47, 47, 0.45);
  background: rgba(214, 47, 47, 0.08);
}

.nav-cta:hover {
  background: rgba(214, 47, 47, 0.16);
  border-color: rgba(214, 47, 47, 0.7);
}

.hero {
  padding: 92px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #d8dde6;
  font-size: 0.82rem;
  font-weight: 800;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(214, 47, 47, 0.14);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 18px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hero-text,
.section-text,
.info-text,
.service-card p,
.service-card li,
.mini-service p,
.example-body p,
.check-item p,
.step-item p,
.contact-row span,
.cta-text p {
  color: var(--muted);
}

.hero-text {
  font-size: 1.12rem;
  max-width: 680px;
}

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

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-badges div {
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  color: #eceff4;
}

.hero-card,
.trust-card,
.service-card,
.example-card,
.info-card,
.contact-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.card-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 18px;
}

.mini-service {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.mini-service:first-of-type {
  border-top: none;
  padding-top: 0;
}

.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
}

.trust-strip {
  padding: 8px 0 22px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card {
  padding: 22px;
}

.trust-card strong {
  display: block;
  font-size: 1.16rem;
  margin-bottom: 6px;
}

.trust-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 58px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-head {
  max-width: 820px;
  margin-bottom: 32px;
}

.services-grid,
.examples-grid,
.two-col {
  display: grid;
  gap: 18px;
}

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

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

.two-col {
  grid-template-columns: 1fr 1fr;
}

.service-card,
.info-card,
.contact-card {
  padding: 28px;
  height: 100%;
}

.service-card:hover,
.example-card:hover,
.info-card:hover,
.contact-card:hover,
.trust-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-line);
  transition: 0.2s ease;
}

.service-number {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  font-weight: 800;
  margin-bottom: 18px;
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.service-card li + li {
  margin-top: 8px;
}

.example-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.example-thumb {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 1.7rem;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(214, 47, 47, 0.12), rgba(255, 255, 255, 0.03)),
    #10141c;
  border-bottom: 1px solid var(--line);
}

.example-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.example-body .text-link {
  margin-top: auto;
}

.example-card-more .example-thumb {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(214, 47, 47, 0.10)),
    #111621;
}

.text-link {
  display: inline-block;
  font-weight: 800;
}

.text-link:hover {
  color: #ffd4d4;
}

.step-list,
.check-list,
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.step-item,
.check-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.step-badge,
.check-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  font-weight: 800;
}

.cta-band {
  padding: 18px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  box-shadow: var(--shadow);
}

.cta-text {
  max-width: 760px;
}

.cta-text .section-kicker {
  margin-bottom: 16px;
}

.cta-text h2 {
  margin-bottom: 12px;
}

.cta-text p {
  margin: 0;
}

.cta-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cta-action .button {
  white-space: nowrap;
}

.contact-row {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.contact-row strong {
  display: block;
  margin-bottom: 6px;
}

form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

label {
  font-size: 0.93rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(214, 47, 47, 0.55);
  box-shadow: 0 0 0 3px rgba(214, 47, 47, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .hero-grid,
  .services-grid,
  .examples-grid,
  .trust-grid,
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0 4px;
    border-top: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 72px 0 40px;
  }

  .hero-grid,
  .services-grid,
  .examples-grid,
  .trust-grid,
  .two-col,
  .hero-badges {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }

  .cta-action {
    justify-content: flex-start;
  }

  .cta-action .button {
    width: 100%;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 2.7rem;
  }

  .section {
    padding: 46px 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

  .hero-card,
  .service-card,
  .info-card,
  .contact-card,
  .trust-card,
  .example-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .example-thumb {
    min-height: 140px;
    font-size: 1.45rem;
  }
}