* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f141b;
  --bg-soft: #151c26;
  --bg-light: #f4f6f8;
  --text: #1b2430;
  --text-light: #f5f7fa;
  --muted: #6b7a8c;
  --accent: #2f7cf6;
  --accent-strong: #1d4ed8;
  --line: #d7dde5;
  --shadow: rgba(16, 24, 40, 0.15);
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0;
  background: #ffffff;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-light);
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  background: #f0f2f5;
  padding: 6px 10px;
  border-radius: 8px;
}

.hero {
  background: var(--bg);
  color: var(--text-light);
  padding: 48px 0 64px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 360px;
}

.split .media {
  flex: 1 1 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #232d3b;
  min-height: 320px;
  box-shadow: 0 18px 40px var(--shadow);
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: #cdd6e3;
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.btn.ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-light);
}

.section.layered {
  position: relative;
  color: var(--text-light);
  background: #0f1724;
}

.section.layered::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/10919666/pexels-photo-10919666.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.section.layered .container {
  position: relative;
  z-index: 1;
}

.section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 8px;
}

.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px var(--shadow);
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.metric {
  flex: 1 1 160px;
  padding: 18px;
  border-radius: 12px;
  background: var(--bg-light);
}

.metric strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 34px var(--shadow);
}

.card-media {
  background: #e8edf3;
}

.card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card .card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
  margin-top: 8px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  padding: 14px 16px;
  border-radius: 12px;
  background: #f7f9fb;
  border: 1px solid var(--line);
}

.testimonials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 260px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 14px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 40px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #ffffff;
}

textarea {
  min-height: 120px;
}

.footer {
  background: #0e1521;
  color: #c7d2e2;
  padding: 46px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer small {
  color: #94a3b8;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-strong);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px auto;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px var(--shadow);
  border: 1px solid var(--line);
  z-index: 20;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.page-hero {
  background: var(--bg-light);
  padding: 48px 0;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notice {
  background: #f0f4ff;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 10px;
}

.image-tile {
  border-radius: 16px;
  overflow: hidden;
  background: #e2e8f0;
  min-height: 280px;
}

.contact-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  border-radius: 14px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 16px 32px var(--shadow);
}

.refs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

.inline-link {
  color: var(--accent-strong);
  font-weight: 600;
}

@media (max-width: 840px) {
  .sticky-cta {
    position: static;
    margin: 24px auto 0;
    display: block;
  }

  .cookie-banner {
    left: 18px;
    right: 18px;
    max-width: none;
  }
}
