* {
  box-sizing: border-box;
}

:root {
  --bg: #0f1620;
  --bg-soft: #17212e;
  --bg-light: #f2f5f8;
  --text: #0f1620;
  --text-light: #e8eef4;
  --muted: #627082;
  --accent: #2f6dff;
  --accent-2: #36b37e;
  --card: #ffffff;
  --line: #d9e2ec;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg-light);
  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;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

header {
  background: var(--bg);
  color: var(--text-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
  min-width: 0;
}

.hero {
  background: linear-gradient(120deg, #0f1620 0%, #0f1f34 55%, #1f3557 100%);
  color: var(--text-light);
}

.hero h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  margin: 0 0 16px;
}

.hero p {
  color: rgba(232, 238, 244, 0.85);
  font-size: 1.05rem;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
}

.panel {
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 22, 32, 0.08);
}

.image-frame {
  background: #dfe7ef;
  border-radius: 22px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: stretch;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.18);
  color: var(--text-light);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.service-row {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(15, 22, 32, 0.06);
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-details {
  flex: 1;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-2);
}

.form-card {
  background: var(--card);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 22, 32, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
}

.info-strip {
  background: var(--bg-soft);
  color: var(--text-light);
}

.bg-chiller {
  background-image: url("https://images.unsplash.com/photo-1717386255893-59c0846cdef0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--text-light);
}

.bg-chiller::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 26, 0.72);
}

.bg-chiller .split {
  position: relative;
  z-index: 1;
}

.info-strip .panel {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.info-strip .muted {
  color: rgba(232, 238, 244, 0.7);
}

footer {
  background: #0c121a;
  color: var(--text-light);
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  color: var(--text);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(15, 22, 32, 0.2);
  padding: 18px 20px;
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 100px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(47, 109, 255, 0.35);
  z-index: 40;
}

.page-hero {
  background: #0f1620;
  color: var(--text-light);
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.highlight {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid var(--accent-2);
}

.inline-cta {
  font-weight: 600;
}

@media (max-width: 920px) {
  .split,
  .service-row {
    flex-direction: column;
  }

  .service-row.reverse,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
