:root {
  --bg: #0f1115;
  --bg-soft: #151a22;
  --bg-contrast: #1e2530;
  --text: #f5f7fb;
  --muted: #c7cdd8;
  --accent: #7bdcff;
  --accent-2: #ffcf70;
  --line: #2a3240;
  --panel: #0b0e13;
}

* {
  box-sizing: border-box;
}

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

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

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 24px 48px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.nav span {
  font-size: 14px;
  color: var(--muted);
}

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

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 56px 48px 96px;
}

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

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

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h1 {
  font-size: 44px;
  margin: 0;
}

.hero-text p {
  color: var(--muted);
  margin: 0;
  max-width: 560px;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.media-frame {
  background: #1a202b;
  padding: 12px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-frame.offset {
  margin-top: -36px;
  transform: rotate(-1deg);
}

.media-img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

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

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

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

.split-section .panel {
  flex: 1 1 300px;
  background: var(--bg-soft);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.highlight {
  background: #131b28;
  border-left: 4px solid var(--accent);
}

.section-sound {
  background: linear-gradient(rgba(10, 12, 18, 0.82), rgba(10, 12, 18, 0.82)),
    url("https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=1400&q=80") center / cover;
  padding: 48px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-sound p {
  color: var(--muted);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--bg-contrast);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  background: #1b2230;
}

.service-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.offset-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-stack .note {
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  max-width: 520px;
}

.offset-stack .note.shift {
  margin-left: 32px;
  background: #18202d;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 28px;
}

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

input,
select,
textarea {
  background: #0f141c;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #8f98a7;
}

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

.testimonial {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: var(--panel);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  background: #111722;
  border-radius: 999px;
  padding: 8px;
  border: 1px solid var(--line);
}

footer {
  background: var(--panel);
  padding: 36px 48px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
}

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

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #121826;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.page-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 880px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--bg-soft);
  border-radius: 18px;
  padding: 22px;
}

@media (max-width: 860px) {
  .site-header,
  main,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

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