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

:root {
  --bg: #080808;
  --bg-soft: #101010;
  --card: #151515;
  --card-strong: #1a1a1a;
  --text: #f4f1ed;
  --muted: #aaa39b;
  --line: #2a2724;
  --accent: #b8734f;
  --accent-light: #d18b63;
  --max: 1180px;
  --radius: 26px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.nav-container {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-name {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-nav a:hover {
  color: var(--accent-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.section {
  padding: 112px 0;
}

.hero {
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 115, 79, .23), transparent 30%),
    radial-gradient(circle at 12% 85%, rgba(184, 115, 79, .10), transparent 28%),
    linear-gradient(135deg, #080808 0%, #111 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: .95;
}

h1 {
  max-width: 850px;
  font-size: clamp(46px, 7vw, 92px);
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 22px;
}

h3 {
  font-size: 23px;
  margin-bottom: 14px;
}

p {
  color: var(--muted);
  font-size: 16px;
}

.lead {
  max-width: 720px;
  font-size: 20px;
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-light);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
}

.hero-panel,
.card,
.price-card,
.imprint-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), #0d0d0d);
}

.hero-panel {
  padding: 34px;
}

.panel-logo {
  width: 180px;
  margin: 0 auto 30px;
}

.panel-row {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.panel-row strong {
  display: block;
  font-size: 28px;
  text-transform: uppercase;
}

.panel-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 54px;
}

.section-head p {
  max-width: 500px;
}

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

.card,
.price-card {
  padding: 32px;
}

.card {
  min-height: 260px;
  transition: transform .2s ease, border-color .2s ease;
}

.card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 115, 79, .7);
}

.card-number {
  display: block;
  margin-bottom: 22px;
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.section-dark {
  background: var(--bg-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.process-list {
  display: grid;
  gap: 0;
}

.process-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-item span {
  color: var(--accent-light);
  font-weight: 900;
}

.price-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.featured {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(184, 115, 79, .18), transparent 46%),
    var(--card-strong);
}

.price {
  margin: 24px 0;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-bottom: 30px;
  color: var(--muted);
}

.price-card li::before {
  content: "✓";
  color: var(--accent-light);
  font-weight: 900;
  margin-right: 10px;
}

.cta {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(184, 115, 79, .18), transparent 36%),
    #080808;
}

.narrow {
  max-width: 820px;
}

.cta p {
  margin: 0 auto 32px;
  max-width: 680px;
}

.imprint {
  background: var(--bg-soft);
}

.imprint-box {
  padding: 32px;
  display: grid;
  gap: 24px;
}

.legal-note {
  font-size: 13px;
  color: #8e8780;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-grid a {
  color: var(--accent-light);
}

@media (max-width: 920px) {
  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #080808;
    border-bottom: 1px solid var(--line);
  }

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

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split-grid,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section {
    padding: 86px 0;
  }

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

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

  .brand-name {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }
}
