:root {
  --bg: #0f1111;
  --bg-soft: #161919;
  --bg-warm: #221a16;
  --text: #f5f3ef;
  --muted: #c9c1b7;
  --accent: #e67e22;
  --accent-2: #f0b429;
  --card: #1b1f1e;
  --stroke: #2a2f2f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 16px;
  border: 1px solid transparent;
}

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

.ad-label {
  font-size: 12px;
  color: var(--accent-2);
  border: 1px dashed var(--accent-2);
  padding: 6px 10px;
  border-radius: 16px;
}

.hero {
  padding: 90px 0 70px;
  background: var(--bg-warm);
}

.hero-inner {
  display: flex;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-visual {
  flex: 1 1 320px;
  min-height: 340px;
  border-radius: 20px;
  background-color: #3a2a22;
  background-size: cover;
  background-position: center;
}

.tagline {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent-2);
}

h1, h2, h3 {
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.section {
  padding: 70px 0;
}

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

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

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 20px;
}

.card h3 {
  margin-top: 12px;
}

.img-frame {
  background: #2a2320;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 280px;
}

.frame-lg {
  min-height: 260px;
}

.frame-md {
  min-height: 240px;
}

.frame-sm {
  min-height: 170px;
}

.frame-xs {
  min-height: 160px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 26px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #1a0f08;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

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

.inline-link {
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 2px;
}

.pricing {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 260px;
  background: #121414;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--stroke);
}

.price {
  font-size: 24px;
  color: var(--accent-2);
  font-weight: 700;
}

.form-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

form {
  flex: 1 1 320px;
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--stroke);
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #0f1111;
  color: var(--text);
  margin-bottom: 16px;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.radio-option {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #101313;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 14px 20px;
  border-radius: 30px;
  background: var(--accent-2);
  color: #1a0f08;
  font-weight: 600;
  z-index: 20;
}

.footer {
  padding: 40px 0 60px;
  background: #0c0d0d;
  border-top: 1px solid var(--stroke);
  font-size: 14px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #1a1e1d;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 20px;
  background: #1f1b17;
  border: 1px solid #3a2a22;
  font-size: 12px;
  color: var(--accent-2);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery .img-frame {
  flex: 1 1 220px;
}

.notice {
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: #151818;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 60px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}

.hero-visual.bg-hero {
  background-image: url("https://images.pexels.com/photos/18824012/pexels-photo-18824012.jpeg");
}

.bg-story {
  background-image: url("https://images.pexels.com/photos/13068671/pexels-photo-13068671.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.pexels.com/photos/12932332/pexels-photo-12932332.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-workspace {
  background-image: url("https://images.pexels.com/photos/9983077/pexels-photo-9983077.jpeg");
  background-size: cover;
  background-position: center;
}
