* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0b0f1a;
  --bg-soft: #141a2b;
  --bg-alt: #1b2236;
  --text: #f3f5f9;
  --muted: #b6bfd4;
  --accent: #7b9cff;
  --accent-strong: #9eb6ff;
  --card: #121826;
  --border: #2a3350;
  --warm: #f4d28a;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #1c2438;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0 12px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  background: var(--warm);
  color: #202020;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-media {
  flex: 1;
  background-color: #1c2438;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: var(--accent);
  color: #0f1320;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid var(--accent-strong);
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 48px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.split-text h2 {
  font-size: 30px;
}

.split-text p {
  color: var(--muted);
}

.split-media {
  flex: 1;
  background-color: #1b243a;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.highlight {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.highlight p {
  color: var(--muted);
}

.services-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.service-card img {
  width: 160px;
  height: 120px;
  border-radius: 12px;
  background-color: #202842;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.price {
  color: var(--warm);
  font-weight: 600;
}

.form-section {
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0e1424;
  color: var(--text);
}

.inline-note {
  color: var(--muted);
  font-size: 14px;
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--accent-strong);
  color: #0f1320;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  z-index: 9;
}

.tagline {
  font-size: 14px;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #101728;
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
}

.list-item span {
  color: var(--muted);
  font-size: 14px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #0f1526;
  border: 1px solid var(--border);
}

.table-row strong {
  font-weight: 600;
}

.wide-image {
  background-color: #1d263d;
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
}

.page-title {
  margin: 32px 0 16px;
  font-size: 36px;
}

.section-divider {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.notice {
  background: #0f1525;
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--muted);
}

.references {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 50%;
    transform: translateX(-50%);
  }
}
