* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #5e6472;
  --accent: #1f6feb;
  --soft: #f2f4f7;
  --soft-2: #e8eef5;
  --warm: #f8f1ea;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: 80px;
}

header {
  padding: 28px 6vw 12px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--accent);
}

.container {
  padding: 0 6vw;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel h1,
.panel h2,
.panel h3 {
  line-height: 1.2;
}

.panel h1 {
  font-size: 2.6rem;
}

.panel h2 {
  font-size: 2rem;
}

.panel h3 {
  font-size: 1.4rem;
}

.media {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--soft);
  display: flex;
}

.media.small {
  min-height: 240px;
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cta-ghost {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.section-card {
  background: var(--soft);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 16px 35px rgba(20, 20, 20, 0.08);
}

.service-image {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--soft-2);
  flex: 0 0 auto;
}

.image-frame {
  width: 100%;
  height: 100%;
  background: var(--soft-2);
  display: flex;
}

.bg-soft {
  background: var(--soft);
}

.bg-soft-2 {
  background: var(--soft-2);
}

.bg-warm {
  background: var(--warm);
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.highlight {
  background: var(--warm);
  border-radius: 24px;
  padding: 28px;
}

.section-bg {
  background-color: #dfe7f3;
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 36px;
  color: #0f172a;
}

.section-bg .panel {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  padding: 24px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

select,
input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d7de;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 60px 6vw 80px;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer a {
  color: #e2e8f0;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #e2e8f0;
  color: #0f172a;
}

.note-box {
  background: var(--soft-2);
  border-radius: 18px;
  padding: 18px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 820px) {
  .panel h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    position: static;
  }
}
