@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #0f141a;
  --surface: #151c24;
  --surface-light: #1b2531;
  --text: #f5f7fa;
  --muted: #b7c0cc;
  --accent: #5ee1c2;
  --accent-strong: #42c8a9;
  --line: #2a3543;
  --warm: #f0d7a4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6%;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 20, 26, 0.92);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.75rem;
  background: var(--surface-light);
  color: var(--warm);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.section {
  padding: 40px 6%;
}

.hero {
  padding: 72px 6% 64px;
  background-image: url("https://images.unsplash.com/photo-1780034766295-43db0f2a0fb7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1672165408232-282e70a13f95?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1672165407773-20262ff6ab13?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1742477012583-804ba592b2c8?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 22, 0.75);
}

.hero-content {
  position: relative;
  max-width: 540px;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 20px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 28px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text);
  font-weight: 600;
}

.btn.primary {
  background: var(--accent);
  color: #0e151b;
  border-color: transparent;
}

.btn:hover {
  background: var(--accent-strong);
  color: #0e151b;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block,
.split .media-block {
  flex: 1 1 320px;
}

.panel {
  background: var(--surface);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--line);
}

.image-frame {
  background: var(--surface-light);
  border-radius: 24px;
  padding: 12px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--warm);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.process-step span {
  font-weight: 700;
  color: var(--accent);
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: var(--surface-light);
  border: 1px solid var(--accent);
  padding: 18px;
  border-radius: 18px;
}

.form-card {
  background: var(--surface-light);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f151c;
  color: var(--text);
  font-family: inherit;
}

.footer {
  padding: 48px 6%;
  border-top: 1px solid var(--line);
  background: #0c1117;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.disclaimer {
  color: var(--muted);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px 20px;
  border-radius: 16px;
  display: none;
  align-items: center;
  gap: 16px;
  z-index: 999;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.light-section {
  background: #101824;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1759836096317-e746643cc277?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 21, 0.72);
}

.background-panel .panel {
  position: relative;
  background: rgba(21, 28, 36, 0.88);
}

.dual-media {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.dual-media .image-frame {
  flex: 1 1 220px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2rem;
  }

  .split {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
