* {
  box-sizing: border-box;
}

:root {
  --ink: #11141a;
  --muted: #5d6b73;
  --accent: #1e5eff;
  --accent-soft: #e8efff;
  --surface: #f4f6f8;
  --panel: #ffffff;
  --shadow: 0 12px 30px rgba(17, 20, 26, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid #e3e7ea;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
}

.ad-label {
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 64px 0;
}

.section.compact {
  padding: 40px 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.hero {
  color: #fff;
  background: #0f1f2b;
  background-image: url("https://images.unsplash.com/photo-1758828447673-e4c92f06bded?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 31, 43, 0.85), rgba(15, 31, 43, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
}

.hero p {
  margin: 0;
  max-width: 480px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.hero .button.secondary {
  border-color: #c9d4f5;
  color: #f1f4ff;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.image-frame {
  background: #dce3ea;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--panel);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.card-media {
  width: 140px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background: #cdd6dd;
  flex-shrink: 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  margin: 0 0 6px;
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

.accent-slab {
  background: #0f1f2b;
  color: #f7f9fc;
  background-image: url("https://images.unsplash.com/photo-1751874467603-c5d097d06b3d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.accent-slab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 34, 0.8);
}

.accent-slab .panel,
.accent-slab .split {
  position: relative;
  z-index: 1;
}

.muted {
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d0d7de;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  background: #0b1117;
  color: #e2e8f0;
  padding: 36px 0;
}

.footer a {
  color: #e2e8f0;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1;
  min-width: 220px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--panel);
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--panel);
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 30;
  max-width: 340px;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.hero-page {
  background: #0f1f2b;
  color: #fff;
  padding: 64px 0;
  position: relative;
}

.hero-page.about {
  background-image: url("https://images.unsplash.com/photo-1765273558927-fc36bc6545e6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-page.services {
  background-image: url("https://images.unsplash.com/photo-1767437238326-2207a5e3b3f4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-page.contact {
  background-image: url("https://images.unsplash.com/photo-1738784710326-75426a9a5ec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 28, 0.75);
}

.hero-page .container {
  position: relative;
  z-index: 1;
}

.inline-image {
  background: #dfe5ea;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.inline-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.legal {
  background: var(--panel);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    bottom: 12px;
  }
}
