* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5a5f66;
  --accent: #ff6a3d;
  --accent-dark: #d84d24;
  --sand: #f7f2ee;
  --mint: #e7f2ef;
  --lavender: #f2e9fb;
  --line: #e3dcd6;
  --bg: #fcfbf9;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 12px;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  padding: 40px;
  background: var(--sand);
  border-radius: 32px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: var(--lavender);
  right: -60px;
  top: -40px;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  color: var(--muted);
}

.hero h1 {
  font-size: 38px;
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.hero-media img {
  max-width: 320px;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.offset-block {
  margin: 52px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: white;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--line);
}

.offset-block.shift-right {
  margin-left: auto;
  max-width: 720px;
}

.offset-block.shift-left {
  margin-right: auto;
  max-width: 720px;
}

.block-title {
  font-size: 26px;
  line-height: 1.25;
}

.block-text {
  color: var(--muted);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.two-col .panel {
  flex: 1;
  background: var(--mint);
  padding: 24px;
  border-radius: 20px;
}

.panel h3 {
  margin-bottom: 10px;
}

.panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.quote-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #1f1f26;
  color: white;
  padding: 32px;
  border-radius: 26px;
}

.quote-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card strong {
  font-size: 20px;
}

.price-card .price {
  font-size: 22px;
  color: var(--accent-dark);
}

.price-card button {
  align-self: flex-start;
}

.form-area {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--lavender);
  border-radius: 28px;
  padding: 32px;
}

.form-area form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-area label {
  font-size: 14px;
  color: var(--muted);
}

.form-area input,
.form-area select,
.form-area textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  background: white;
}

.form-area button {
  border: none;
  cursor: pointer;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 40;
}

.section-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.footer {
  margin-top: 64px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: white;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: 1px solid var(--line);
  background: white;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.content-page {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 760px;
}

.content-page h1 {
  font-size: 34px;
  line-height: 1.2;
}

.content-page h2 {
  font-size: 22px;
  margin-top: 12px;
}

.content-page p,
.content-page li {
  color: var(--muted);
}

.content-page ul {
  padding-left: 18px;
}

.contact-card {
  background: var(--sand);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 840px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-media {
    flex: 1;
    justify-content: flex-end;
  }

  .hero-content {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .quote-grid {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}
