* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d2430;
  --muted: #5e6b7a;
  --soft: #f4f6f9;
  --accent: #2a5bd7;
  --accent-dark: #1f47aa;
  --sand: #f7f1ea;
  --sage: #e9f0ee;
  --rose: #f7ecef;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e5e9f0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  background: var(--sand);
}

.hero-text {
  flex: 1 1 420px;
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-title {
  font-size: 2.7rem;
  line-height: 1.1;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-media {
  flex: 1 1 420px;
  min-height: 360px;
  background: #e6dccf;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 56px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .media {
  flex: 1 1 320px;
  min-height: 260px;
  background: #e1e8f4;
}

.highlight {
  background: var(--sage);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  border: 1px solid #e3e7ef;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 160px;
  background: #e7eef8;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  background: var(--rose);
  border-radius: 16px;
  padding: 22px;
  font-style: italic;
}

.form-wrap {
  background: #ffffff;
  border: 1px solid #e2e6f0;
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cdd5e1;
  font-size: 0.95rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #e2e6f0;
  padding: 14px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer {
  background: #0f1724;
  color: #e4e8f0;
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e4e8f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-title {
  font-size: 2rem;
  margin-bottom: 14px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-card {
  flex: 1 1 260px;
  border: 1px solid #e3e7ef;
  border-radius: 12px;
  padding: 18px;
  background: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #e2e6f0;
  border-radius: 14px;
  padding: 18px;
  max-width: 340px;
  box-shadow: 0 10px 30px rgba(15, 23, 36, 0.15);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.muted-bg {
  background: var(--soft);
}

.layout-note {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  color: var(--muted);
}
