* {
  box-sizing: border-box;
}

:root {
  --ink: #0b1b26;
  --muted: #5b6b76;
  --accent: #2563eb;
  --accent-dark: #1e40af;
  --surface: #f5f7fa;
  --surface-strong: #e9eef5;
  --highlight: #f4efe8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  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);
  outline-offset: 2px;
}

header {
  padding: 24px 6vw 8px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  padding: 6px 12px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 16px 6vw 80px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  background: var(--surface);
  border-radius: 28px;
  padding: 36px;
}

.hero-visual {
  background-color: #cbd5e1;
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 340px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 12px 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 28px;
}

p {
  margin: 12px 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.soft-panel {
  background: var(--highlight);
  border-radius: 22px;
  padding: 28px;
}

.image-box {
  background-color: #dbe6f1;
  border-radius: 18px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--surface-strong);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.bg-insight {
  background-color: #1e293b;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 32px;
  color: #ffffff;
}

.bg-insight p {
  color: #f0f5fb;
}

.form-panel {
  background: var(--surface);
  border-radius: 22px;
  padding: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8e3;
  font-size: 15px;
  font-family: inherit;
}

.quote {
  font-style: italic;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  padding: 8px;
  z-index: 20;
}

.sticky-cta a {
  padding: 10px 16px;
}

footer {
  padding: 30px 6vw 60px;
  background: var(--ink);
  color: #e5e7eb;
}

footer a {
  color: #e5e7eb;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}

.fineprint {
  font-size: 13px;
  color: #cbd5e1;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #ffffff;
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #38bdf8;
  color: #0f172a;
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 1px solid #94a3b8;
}

.page-hero {
  background: var(--surface);
  border-radius: 24px;
  padding: 30px;
}

.highlight-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.inline-image {
  height: 220px;
}

.card-image {
  height: 150px;
}

.bg-team {
  background-color: #1e293b;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 28px;
  color: #ffffff;
}

.bg-team p {
  color: #f8fafc;
}

.section-tag {
  display: inline-flex;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px;
  background: var(--surface-strong);
  border-radius: 12px;
}
