*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5e6368;
  --accent: #2246ff;
  --accent-soft: #e8edff;
  --warm: #f6efe8;
  --cool: #eef3f7;
  --shadow: 0 18px 40px rgba(15, 20, 30, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --max-width: 1100px;
  --gap-xl: 48px;
  --gap-lg: 32px;
  --gap-md: 20px;
  --gap-sm: 12px;
  --sidebar-width: 250px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  margin: 0;
  background: #fafafa;
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #ffffff;
  padding: 28px 20px;
  border-bottom: 1px solid #e6e8eb;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.brand span {
  font-size: 18px;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 20px;
  background: var(--cool);
}

.content {
  flex: 1;
  padding: 0 20px 60px;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.intro {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.intro-card {
  background: var(--warm);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.intro-card h1 {
  font-size: 34px;
  margin-top: 0;
}

.intro-visual {
  display: flex;
  gap: var(--gap-sm);
  align-items: stretch;
}

.intro-visual img {
  flex: 1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.split .panel {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.highlight-row {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.highlight {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.card img {
  border-radius: var(--radius-md);
}

.layered {
  position: relative;
  overflow: hidden;
  background: var(--cool);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.layered::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 220px;
  height: 220px;
  background: var(--accent-soft);
  border-radius: 50%;
}

.layered-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  padding-left: 20px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  border: 1px solid #c7ced6;
  color: var(--ink);
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.service-item {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.price {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #c7ced6;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  background: #ffffff;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  position: sticky;
  top: 14px;
  align-self: flex-start;
}

.footer {
  padding: 30px 20px 50px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.meta-grid {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  font-size: 15px;
}

.banner {
  background: #111827;
  color: #ffffff;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner a {
  color: #ffffff;
  text-decoration: underline;
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    flex: 0 0 var(--sidebar-width);
    min-height: 100vh;
    border-right: 1px solid #e6e8eb;
    border-bottom: none;
  }

  .content {
    padding: 0 40px 80px;
  }

  .intro {
    flex-direction: row;
    align-items: center;
  }

  .intro-card {
    flex: 1.1;
  }

  .intro-visual {
    flex: 0.9;
    flex-direction: column;
  }

  .split {
    flex-direction: row;
  }

  .split .panel {
    flex: 1;
  }

  .highlight-row {
    flex-direction: row;
  }

  .highlight {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(50% - var(--gap-lg));
  }

  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-column > * {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
