* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f1417;
  --bg-muted: #161d21;
  --bg-soft: #1c262b;
  --accent: #e65c3c;
  --accent-dark: #c24a2f;
  --text: #f4f4f2;
  --text-muted: #c6c7c8;
  --line: #2a343a;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 24px 0 96px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

.nav a {
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--bg-muted);
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 12px;
}

.split-section {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-content h1,
.section-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.section-content p {
  color: var(--text-muted);
}

.section-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
  color: var(--text-muted);
}

.section-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.image-frame {
  background: var(--bg-soft);
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.hero-media {
  background: var(--bg-soft);
  border-radius: 22px;
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.hero-image {
  background-image: url("https://images.unsplash.com/photo-1697952438910-b22a06a75501?w=1400&q=80");
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-muted);
  font-size: 12px;
  width: fit-content;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.panel-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel {
  background: var(--bg-muted);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.panel strong {
  display: block;
  margin-bottom: 6px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats span {
  font-size: 28px;
  font-weight: 600;
}

.highlight-section {
  background: var(--bg-muted);
  padding: 32px;
  border-radius: 24px;
}

.bg-image {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 32px;
}

.trust-bg {
  background-image: url("https://images.unsplash.com/photo-1777297905233-9eb12bc9a385?w=1400&q=80");
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-muted);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.price-tag {
  font-weight: 600;
  color: var(--accent);
}

.form-card {
  background: var(--bg-muted);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--text-muted);
}

select,
input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.disclaimer {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-muted);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
