:root {
  --bg: #0f1114;
  --bg-soft: #151920;
  --bg-card: #1b2029;
  --text: #f4f5f7;
  --muted: #b5bcc7;
  --accent: #7bd88f;
  --accent-dark: #4bb56a;
  --highlight: #f2c94c;
}

* {
  box-sizing: border-box;
}

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

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

a:focus {
  outline: 2px solid var(--highlight);
  outline-offset: 2px;
}

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

.topbar {
  padding: 20px 6vw 10px;
}

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

.logo {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--highlight);
}

.hero {
  padding: 120px 6vw 80px;
  background-image: url("https://images.pexels.com/photos/7801485/pexels-photo-7801485.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15,17,20,0.9), rgba(15,17,20,0.55));
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  border: none;
  background: var(--accent);
  color: #0b0e12;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 60px 6vw 100px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

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

.split .content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media {
  flex: 1 1 320px;
  background: #2a2f38;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
}

.highlight-box {
  background: var(--bg-card);
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--bg-card);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-tag {
  color: var(--highlight);
  font-size: 0.85rem;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  background: var(--bg-card);
  padding: 18px 20px;
  border-radius: 16px;
  flex: 1 1 180px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-index {
  background: var(--accent-dark);
  color: #0b0e12;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.trust-bg {
  background-image: url("https://images.pexels.com/photos/4842733/pexels-photo-4842733.jpeg");
  background-size: cover;
  background-position: center;
  padding: 50px;
  border-radius: 24px;
  position: relative;
}

.trust-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 20, 0.72);
  border-radius: 24px;
}

.trust-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #2c323c;
  padding-bottom: 12px;
}

.price-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-section {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 240px;
}

input, select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #353b45;
  background: #0f1217;
  color: var(--text);
}

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

.radio-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--highlight);
  color: #111;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 20;
}

.footer {
  background: var(--bg-soft);
  padding: 40px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.footer small {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1b1f27;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  flex-wrap: wrap;
}

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

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #0b0e12;
}

.cookie-reject {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
}

.notice {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-bg {
  background-image: url("https://images.pexels.com/photos/4944433/pexels-photo-4944433.jpeg");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 48px;
  position: relative;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 20, 0.65);
  border-radius: 24px;
}

.section-bg .content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.simple-hero {
  padding: 80px 6vw 40px;
}

.simple-hero h1 {
  margin: 0 0 10px;
}

.page-main {
  padding: 40px 6vw 90px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.address-block {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial {
  background: rgba(15,17,20,0.75);
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
