* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5c5f69;
  --accent: #1665d8;
  --accent-soft: #e8f0fb;
  --warm: #f7efe7;
  --cool: #eef2f6;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-soft {
  background: var(--accent-soft);
  color: var(--accent);
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: var(--cool);
}

.section-warm {
  background: var(--warm);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 320px;
}

.asym {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.asym-left {
  flex: 1 1 360px;
}

.asym-right {
  flex: 1 1 260px;
  align-self: flex-start;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.services-grid {
  margin-top: 32px;
}

.card {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 240px;
}

.card img {
  width: 100%;
  border-radius: 16px;
}

.nav {
  padding: 28px 0 12px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  padding-top: 40px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 18px 0 16px;
}

.hero-image {
  position: relative;
  padding: 16px;
}

.hero-image img {
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.offset-panel {
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-top: -40px;
  margin-left: auto;
  max-width: 360px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.testimonial {
  background: var(--white);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  flex: 1 1 240px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d9e0;
  font-family: inherit;
}

.footer {
  padding: 32px 0 50px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 780px) {
  .offset-panel {
    margin-top: 20px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
