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

:root {
  --bg: #0f0f0d;
  --panel: #171713;
  --text: #f8f3df;
  --muted: #cfc5a7;
  --yellow: #f4c400;
  --red: #cf1515;
  --stone: #f4f0e6;
  --ink: #222;
  --line: rgba(255,255,255,.14);
  --shadow: 0 24px 70px rgba(0,0,0,.28);
  --radius: 24px;
}

* { 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(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(244,196,0,.18), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(207,21,21,.20), transparent 30rem),
    var(--bg);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(15,15,13,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
}

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

.main-nav a:hover {
  color: var(--yellow);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 30px;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(54px, 8vw, 110px) clamp(18px, 6vw, 90px);
}

.hero-content h1 {
  max-width: 920px;
  margin: 0 0 22px;
  font-size: clamp(42px, 6.2vw, 86px);
  line-height: .96;
  letter-spacing: -.06em;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  margin: 0 0 34px;
}

.eyebrow {
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .16em;
  font-size: 13px;
  margin: 0 0 14px;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 16px 38px rgba(244,196,0,.22);
}

.btn.secondary {
  border-color: var(--line);
  color: var(--stone);
  background: rgba(255,255,255,.04);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.quick-info {
  margin-top: 16px;
  display: grid;
  gap: 4px;
  background: #fff;
  color: var(--ink);
  padding: 18px;
  border-radius: 18px;
}

.quick-info span {
  color: #555;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 clamp(18px, 6vw, 90px) 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.05);
}

.trust-strip div {
  padding: 24px;
  display: grid;
  gap: 4px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 90px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.section-heading p:not(.eyebrow),
.split p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  min-height: 300px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--stone);
  color: var(--ink);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,196,0,.20), transparent 45%), linear-gradient(315deg, rgba(0,0,0,.08), transparent 40%);
  pointer-events: none;
}

.service-card > * {
  position: relative;
}

.icon {
  position: absolute;
  top: 22px;
  left: 26px;
  font-size: 42px;
  color: var(--red);
}

.service-card h3 {
  font-size: 24px;
  margin: 0 0 10px;
}

.service-card p {
  margin: 0;
  color: #555;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
  gap: 34px;
  align-items: start;
  background: #f6f1e7;
  color: var(--ink);
}

.split .eyebrow {
  color: var(--red);
}

.split p {
  color: #555;
}

.feature-box {
  border-radius: var(--radius);
  background: #111;
  color: var(--stone);
  padding: 30px;
  box-shadow: var(--shadow);
}

.feature-box h3 {
  margin-top: 0;
  font-size: 26px;
}

.feature-box ul {
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}

.feature-box li + li {
  margin-top: 12px;
}

.process {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.07));
}

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

.steps div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255,255,255,.05);
}

.steps span {
  color: var(--yellow);
  font-weight: 800;
}

.steps h3 {
  font-size: 24px;
  margin: 18px 0 8px;
}

.steps p {
  color: var(--muted);
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
  gap: 34px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards > * {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
}

.contact-cards span {
  color: var(--muted);
  word-break: break-word;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--stone);
  color: var(--ink);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #ddd2bd;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

.contact-form small {
  color: #666;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap: 26px;
  padding: 48px clamp(18px, 6vw, 90px);
  border-top: 1px solid var(--line);
  background: #090907;
  color: var(--muted);
}

.site-footer img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 12px;
}

.site-footer h3 {
  color: var(--stone);
  margin-top: 0;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
}

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

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

  .trust-strip,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }
}

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

  .main-nav {
    position: absolute;
    top: 91px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #111;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }
}
