* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5f6267;
  --accent: #4f46e5;
  --accent-soft: #eef0ff;
  --sand: #f7f2ec;
  --stone: #f0f4f8;
  --forest: #1f2933;
  --border: rgba(26, 26, 26, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 8vw 0 8vw;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 8vw;
}

.hero-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero-header h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  line-height: 1.1;
}

.hero-header p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-panels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-panels .panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero-panels .panel.highlight {
  background: var(--accent-soft);
}

.panel-badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.btn.light {
  background: #ffffff;
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 8vw;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  margin: 0 8vw;
  padding: 40px 6vw;
  border-radius: 28px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.58);
}

.section-bg > * {
  position: relative;
}

.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  max-width: 620px;
}

.asymmetric-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asymmetric-row .offset-card {
  background: var(--stone);
  border-radius: 26px;
  padding: 24px;
  position: relative;
  border: 1px solid var(--border);
}

.offset-card.dark {
  background: var(--forest);
  color: #f5f5f5;
}

.offset-card .tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.7;
}

.offset-card .stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #ffffff;
  position: relative;
}

.service-card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.service-card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px;
  border-radius: 26px;
  background: var(--accent-soft);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.split-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  border: 1px solid var(--border);
}

.footer {
  margin-top: auto;
  padding: 40px 8vw 28px 8vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(79, 70, 229, 0.3);
  z-index: 20;
}

.cookies {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookies.visible {
  display: flex;
}

.cookies .actions {
  display: flex;
  gap: 10px;
}

.cookies button {
  flex: 1;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.cookies button.accept {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.muted {
  color: var(--muted);
}

.notice {
  background: var(--sand);
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 840px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }

  .hero-header {
    flex: 1;
  }

  .hero-panels {
    flex: 1.1;
  }

  .asymmetric-row {
    flex-direction: row;
    align-items: stretch;
  }

  .asymmetric-row .offset-card {
    flex: 1;
  }

  .asymmetric-row .offset-card.shift {
    transform: translateY(24px);
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px);
  }

  .split-visual {
    flex-direction: row;
    align-items: center;
  }

  .split-visual img {
    width: 45%;
  }
}
