* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f2ee;
  --ink: #171717;
  --muted: #4b4b4b;
  --accent: #4a4df5;
  --accent-dark: #2d2fd1;
  --warm: #f2b278;
  --soft: #e8e0d6;
  --white: #ffffff;
  --shadow: 0 24px 40px rgba(23, 23, 23, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 28px 0 10px;
  position: relative;
  z-index: 2;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--warm));
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 50px 0 70px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 65%;
  height: 70%;
  top: 10%;
  left: -10%;
  background: var(--soft);
  z-index: 0;
  border-radius: 40px;
}

.hero-content {
  flex: 1 1 420px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content p {
  color: var(--muted);
  max-width: 480px;
}

.hero-visual {
  flex: 1 1 360px;
  position: relative;
  z-index: 1;
}

.hero-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.offset-band {
  background: var(--white);
  margin: 0 auto;
  padding: 44px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  position: relative;
  top: -40px;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.split-text p {
  color: var(--muted);
}

.split-image {
  flex: 1 1 320px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.layered-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.layer-card {
  flex: 1 1 240px;
  background: var(--white);
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 18px 30px rgba(23, 23, 23, 0.08);
  position: relative;
}

.layer-card img {
  border-radius: 16px;
  margin-bottom: 14px;
}

.service-band {
  background: linear-gradient(130deg, #fdf8f2, #ece9ff);
  padding: 60px 0;
}

.price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card h3 {
  margin-bottom: 10px;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--warm);
  font-weight: 600;
  margin-bottom: 12px;
}

.testimonial {
  background: var(--white);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
  margin-top: 10px;
}

.form-shell {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid #d4d1cb;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row .field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
  font-weight: 600;
}

.footer {
  padding: 50px 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.banner-hidden {
  display: none;
}

.page-hero {
  padding: 40px 0 30px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.paper {
  background: var(--white);
  padding: 32px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 280px;
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.highlight {
  background: var(--accent);
  color: var(--white);
  padding: 24px;
  border-radius: 20px;
}

.offset-block {
  position: relative;
  left: 4%;
}

@media (max-width: 760px) {
  .hero::before {
    width: 100%;
    left: 0;
  }

  .offset-band {
    top: 0;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
