* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #10131a;
  --muted: #5b6673;
  --accent: #2e6ff2;
  --accent-soft: #e7efff;
  --bg: #f7f8fb;
  --card: #ffffff;
  --line: #e3e8ef;
  --warm: #f1ebe4;
  --cool: #eef5f7;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 7vw 12px;
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--accent-soft);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 36px 7vw 40px;
  background: var(--bg);
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin: 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border-color: var(--accent);
}

.btn:hover {
  filter: brightness(0.96);
}

.section {
  padding: 40px 7vw;
}

.section.alt {
  background: var(--cool);
}

.section.warm {
  background: var(--warm);
}

.bg-flow {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 24, 0.62);
}

.bg-flow .panel,
.bg-flow .section-title,
.bg-flow p {
  position: relative;
  z-index: 1;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 34px);
}

.muted {
  color: var(--muted);
}

.image-frame {
  background: #dbe2ea;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 12px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  align-items: center;
  flex-wrap: wrap;
}

.service-card .card-image {
  flex: 0 0 140px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  background: #dfe7ef;
}

.service-card .card-body {
  flex: 1 1 220px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  margin-top: 6px;
}

.testimonial {
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: #ffffff;
  border-radius: 12px;
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-weight: 600;
}

.form-card select,
.form-card input,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.inline-cta:hover {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.sticky-cta a {
  display: inline-flex;
  padding: 8px 12px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  padding: 30px 7vw 60px;
  background: #0f1520;
  color: #e5e8ef;
}

.footer a {
  color: #e5e8ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #c7cdd8;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  cursor: pointer;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.legal-section {
  padding: 40px 7vw;
}

.legal-section h2 {
  margin-top: 28px;
}
