* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --ink: #1c1f24;
  --muted: #5a606b;
  --accent: #2f4b7c;
  --accent-2: #9c4f2b;
  --light: #ffffff;
  --panel: #eef1f4;
  --shadow: 0 14px 30px rgba(12, 21, 38, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8vw;
  background: var(--light);
  border-bottom: 1px solid #e1e3e8;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--accent-2);
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 70px 8vw;
  color: var(--light);
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 32, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--light);
  border-color: var(--light);
}

.btn:hover {
  opacity: 0.9;
}

.section {
  padding: 60px 8vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.image-frame {
  background: #d9dde3;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  background: var(--light);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.highlight {
  background: var(--light);
  border-left: 4px solid var(--accent-2);
  padding: 18px 20px;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  background: var(--light);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.form-wrapper {
  background: var(--light);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d6de;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  background: #11151e;
  color: #c8cdd8;
  padding: 40px 8vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #c8cdd8;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  padding: 12px 18px;
  background: var(--accent-2);
  color: var(--light);
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 5;
}

.sticky-cta:hover {
  opacity: 0.9;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--light);
  position: relative;
}

.bg-insight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 18, 28, 0.65);
}

.bg-insight > * {
  position: relative;
  z-index: 1;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=1400&q=80");
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--light);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 10px;
  border: 1px solid var(--accent);
  padding: 10px;
  background: var(--accent);
  color: var(--light);
  cursor: pointer;
}

.cookie-actions button.reject {
  background: transparent;
  color: var(--accent);
}

.cookie-actions button:hover {
  opacity: 0.9;
}

.legal-page {
  max-width: 860px;
}
