:root {
  --ink: #1f2933;
  --muted: #5f6c72;
  --accent: #2d6cdf;
  --accent-dark: #1e4fa8;
  --soft: #f4f6f8;
  --warm: #f7f1ea;
  --shadow: rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 24px 6%;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid #d1d5db;
  padding: 6px 10px;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

nav a {
  color: var(--ink);
  font-weight: 500;
}

main {
  display: flex;
  flex-direction: column;
}

section {
  padding: 72px 6%;
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-visual {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  padding-top: 88px;
  padding-bottom: 88px;
  background: var(--soft);
}

.hero-title {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  margin: 0 0 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  border: 1px solid #cbd5f5;
  color: var(--accent-dark);
}

.image-frame {
  background-color: #e8edf3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px var(--shadow);
}

.muted {
  color: var(--muted);
}

.layered {
  position: relative;
  background: #ffffff;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 12% 8% auto auto;
  height: 220px;
  width: 220px;
  border-radius: 40px;
  background: var(--warm);
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 24px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight {
  background: var(--soft);
}

.bg-vision {
  background-color: #f1f5f9;
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0f172a;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  box-shadow: 0 10px 20px var(--shadow);
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 50px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 14px 40px var(--shadow);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.inline-cta {
  font-weight: 600;
}

footer {
  padding: 48px 6%;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 40px var(--shadow);
  padding: 18px;
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--soft);
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal {
  max-width: 820px;
}

.legal h2 {
  margin-top: 28px;
}

.note-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 24px var(--shadow);
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
