* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #6b7280;
  --accent: #1f6feb;
  --accent-soft: #e7f0ff;
  --bg: #f7f7fb;
  --panel: #ffffff;
  --line: #e5e7eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding: 18px 6vw;
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fafafa;
}

.section {
  padding: 70px 6vw;
}

.section.compact {
  padding: 50px 6vw;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 52%;
  min-width: 260px;
}

.split .media {
  flex: 1 1 48%;
  min-width: 260px;
}

.hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  font-weight: 600;
}

.image-frame {
  background: #e9eef9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: auto;
}

.image-holder {
  background: #eef1f6;
  border-radius: 14px;
  overflow: hidden;
}

.image-holder img {
  width: 100%;
  height: 180px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  flex: 1 1 240px;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.step {
  flex: 1 1 200px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.footer {
  margin-top: auto;
  background: #0f172a;
  color: #e2e8f0;
  padding: 40px 6vw;
}

.footer a {
  color: #93c5fd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 20px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cbd5f5;
  max-width: 920px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #e5e7eb;
  color: #111827;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 90px;
  background: #0f172a;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 900;
}

.image-bg {
  background: #eef2ff;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 30px;
}

.bg-cable {
  background-image: url("https://images.unsplash.com/photo-1603539444875-76e7684265f6?w=1400&q=80");
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 18px;
    left: 18px;
    text-align: center;
  }
}
