* {
  box-sizing: border-box;
}

:root {
  --ink: #0f172a;
  --muted: #475569;
  --accent: #1d4ed8;
  --accent-2: #0f766e;
  --bg: #f8fafc;
  --panel: #ffffff;
  --warm: #fef3c7;
  --steel: #e2e8f0;
  --shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-bar {
  padding: 20px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--panel);
  border-bottom: 1px solid var(--steel);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.2rem;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--steel);
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 8px;
  border-radius: 6px;
}

.cta-button,
.ghost-button {
  padding: 12px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border: 1px solid transparent;
}

.cta-button {
  background: var(--accent);
  color: #fff;
}

.ghost-button {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.split-section {
  display: flex;
  gap: 40px;
  padding: 64px 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media.tall img {
  height: 420px;
}

.section-title {
  font-size: 2.1rem;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--steel);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card img {
  height: 160px;
  border-radius: 12px;
}

.bg-indigo {
  background: #c7d2fe;
}

.bg-amber {
  background: #fde68a;
}

.bg-sky {
  background: #e0f2fe;
}

.bg-blue {
  background: #bfdbfe;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-2);
}

.strip {
  background: var(--panel);
  padding: 48px 6vw;
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
}

.strip-inner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.quote {
  font-style: italic;
  color: var(--muted);
  max-width: 420px;
}

.form-section {
  padding: 64px 6vw;
  background: #f1f5f9;
}

.form-panel {
  background: var(--panel);
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--steel);
  font-family: inherit;
}

.inline-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.footer {
  padding: 40px 6vw;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e2e8f0;
}

.legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--panel);
  border: 1px solid var(--steel);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.page-header {
  padding: 48px 6vw 24px;
}

.page-header h1 {
  margin-bottom: 10px;
}

.content-block {
  padding: 24px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--steel);
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: var(--warm);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
