:root {
  --ink: #111713;
  --ink-soft: #232b25;
  --muted: #646c62;
  --paper: #f6f2e9;
  --paper-soft: #fbfaf5;
  --surface: #fffdf8;
  --line: #ded7c8;
  --line-strong: #cfc6b4;
  --teal: #236d66;
  --teal-dark: #174f49;
  --gold: #b9894c;
  --gold-soft: #eadcc7;
  --sage: #dce5db;
  --clay: #91624f;
  --shadow: 0 24px 70px rgba(17, 23, 19, 0.13);
  --shadow-soft: 0 12px 34px rgba(17, 23, 19, 0.08);
  --radius: 8px;
  --max-width: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 242, 233, 1) 0, rgba(251, 250, 245, 1) 42%, rgba(241, 238, 228, 1) 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), var(--max-width));
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(17, 23, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 44px rgba(17, 23, 19, 0.11);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  font-weight: 780;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--teal-dark);
}

.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 242, 233, 0.99) 0%, rgba(246, 242, 233, 0.95) 34%, rgba(246, 242, 233, 0.48) 63%, rgba(246, 242, 233, 0.1) 100%),
    linear-gradient(180deg, rgba(17, 23, 19, 0) 56%, rgba(246, 242, 233, 0.88) 100%),
    url("assets/hero-product.png") 58% center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(246, 242, 233, 0.9), rgba(246, 242, 233, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 132px 0 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 610px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 6.8rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 3.15rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 585px;
  margin-bottom: 30px;
  color: #344039;
  font-size: 1.22rem;
  overflow-wrap: anywhere;
}

.hero-copy strong {
  color: var(--ink);
  font-weight: 830;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-actions,
.slug-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 780;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg,
.feature-card svg,
.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 13px 32px rgba(17, 23, 19, 0.2);
}

.button-primary:hover {
  background: var(--ink-soft);
}

.button-secondary {
  border-color: rgba(17, 23, 19, 0.2);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.76);
}

.button-secondary:hover {
  border-color: rgba(17, 23, 19, 0.38);
  background: rgba(255, 253, 248, 0.94);
}

.full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 44px 0 0;
}

.hero-facts div {
  min-height: 90px;
  padding: 16px;
  border: 1px solid rgba(17, 23, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 10px 28px rgba(17, 23, 19, 0.05);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.signal-strip {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max-width));
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
  padding: 19px 22px;
  border: 1px solid var(--line-strong);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.signal-strip p,
.signal-strip span {
  margin: 0;
  overflow-wrap: anywhere;
}

.signal-strip p {
  font-weight: 800;
}

.signal-strip span {
  color: var(--muted);
}

.section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-heading h2,
.price-copy h2,
.profile-copy h2,
.reserve-copy h2 {
  max-width: 780px;
}

.section-heading p:not(.eyebrow),
.profile-copy p,
.price-copy p,
.reserve-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 12px;
}

.feature-card,
.price-card,
.profile-preview,
.reserve-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
}

.feature-card {
  min-height: 238px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(17, 23, 19, 0.04);
}

.feature-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 24px;
  color: var(--teal-dark);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-section,
.pricing-section,
.reserve-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 70px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #33413b;
}

.check-list svg {
  margin-top: 3px;
  color: var(--teal-dark);
}

.profile-preview {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 244, 236, 0.98));
  box-shadow: var(--shadow-soft);
}

.profile-preview::before {
  content: "berater.id/marcelkoca";
  display: block;
  margin: -24px -24px 22px;
  padding: 14px 24px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--ink);
  font-size: 0.84rem;
  font-weight: 760;
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  width: 66px;
  height: 66px;
  border: 4px solid var(--gold-soft);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #8d9891 0 16%, transparent 17%),
    radial-gradient(circle at 50% 86%, #8d9891 0 32%, transparent 33%),
    #edf2ed;
}

.preview-top strong,
.preview-top span {
  display: block;
}

.preview-top strong {
  font-size: 1.18rem;
}

.preview-top span {
  color: var(--muted);
}

.preview-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 20px 0;
}

.preview-actions button {
  aspect-ratio: 1;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--teal-dark);
  cursor: pointer;
}

.preview-actions svg {
  width: 20px;
  height: 20px;
  margin: auto;
}

.preview-block {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.preview-block p {
  margin: 4px 0 0;
}

.preview-block.accent {
  color: var(--teal-dark);
}

.preview-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.preview-link {
  min-height: 48px;
  display: grid;
  place-items: center;
  margin-top: 8px;
  border-radius: 7px;
  color: var(--ink);
  background: var(--gold-soft);
  font-weight: 780;
}

.flow-section {
  width: 100%;
  max-width: none;
  padding: 104px max(16px, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(180deg, #121813 0%, #1e281f 100%);
  color: #fff;
}

.flow-section .eyebrow {
  color: var(--gold-soft);
}

.flow-section h2 {
  color: #fff;
}

.flow-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  min-height: 246px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.flow-list span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 850;
}

.flow-list h3 {
  color: #fff;
}

.flow-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1fr);
  gap: 56px;
  align-items: stretch;
}

.price-copy {
  align-self: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 14px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.price-card-featured {
  color: #fff;
  background:
    linear-gradient(180deg, #121813, #202a22);
  border-color: rgba(17, 23, 19, 0.92);
}

.price-card-secondary {
  background: rgba(255, 253, 248, 0.92);
}

.price-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 26px;
  padding: 0 10px;
  border-radius: 7px;
  color: var(--teal-dark);
  background: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card-secondary .price-badge {
  color: var(--ink);
  background: var(--sage);
}

.price {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.price strong {
  font-size: 3.65rem;
  line-height: 0.98;
  letter-spacing: 0;
  white-space: nowrap;
}

.price-card-secondary .price strong {
  font-size: 3.15rem;
}

.price span {
  color: var(--muted);
  font-weight: 680;
}

.price-card-featured .price span,
.price-card-featured .price-note,
.price-card-featured .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.price-note {
  margin-bottom: 6px;
  color: var(--muted);
}

.price-card .check-list {
  margin-bottom: 28px;
}

.price-card-featured .check-list svg {
  color: var(--gold-soft);
}

.price-card-featured .button-primary {
  margin-top: auto;
  color: var(--ink);
  background: var(--gold-soft);
  box-shadow: none;
}

.price-card-featured .button-primary:hover {
  background: #f0e4d2;
}

.price-card-secondary .button {
  margin-top: auto;
}

.reserve-section {
  align-items: start;
}

.reserve-form {
  padding: 24px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-soft);
}

.reserve-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 780;
}

.reserve-form input {
  min-width: 0;
  flex: 1 1 230px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
}

.reserve-form input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(35, 109, 102, 0.16);
}

.slug-preview {
  margin: 14px 0 0;
  color: var(--teal-dark);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.form-hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-shell {
  width: min(calc(100% - 32px), 820px);
  margin: 0 auto;
  padding: 72px 0;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal-dark);
  font-weight: 780;
}

.legal-shell h1 {
  max-width: none;
  margin-bottom: 34px;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
}

.legal-shell section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-shell h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.legal-shell p {
  max-width: 68ch;
  color: var(--muted);
}

.legal-shell a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .pricing-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(246, 242, 233, 0.99) 0%, rgba(246, 242, 233, 0.93) 48%, rgba(246, 242, 233, 0.2) 100%),
      url("assets/hero-product.png") 58% 100% / auto 58% no-repeat,
      #f6f2e9;
  }

  .hero-content {
    padding-top: 110px;
  }

  .hero-facts,
  .flow-list,
  .product-section,
  .reserve-section {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .flow-list li {
    min-height: unset;
  }

  .signal-strip {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max-width));
    min-height: 58px;
    grid-template-columns: 1fr;
    padding: 8px 12px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: 770px;
    background:
      linear-gradient(180deg, rgba(246, 242, 233, 1) 0%, rgba(246, 242, 233, 0.95) 52%, rgba(246, 242, 233, 0.18) 100%),
      url("assets/hero-product.png") 61% 100% / auto 50% no-repeat,
      #f6f2e9;
  }

  .hero-content,
  .section {
    width: min(calc(100% - 24px), var(--max-width));
    max-width: calc(100vw - 24px);
  }

  .hero-content {
    margin-right: 12px;
    margin-left: 12px;
    padding-top: 96px;
  }

  .hero-copy,
  .signal-strip,
  .signal-strip p,
  .signal-strip span {
    max-width: calc(100vw - 24px);
    word-break: break-word;
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions,
  .slug-row {
    align-items: stretch;
  }

  .button,
  .slug-row .button {
    width: 100%;
  }

  .hero-facts {
    margin-top: 28px;
  }

  .hero-facts div {
    min-height: 76px;
  }

  .signal-strip {
    width: min(calc(100% - 24px), var(--max-width));
    margin-top: -28px;
  }

  .section,
  .flow-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .price strong {
    font-size: 3rem;
  }

  .site-footer {
    width: min(calc(100% - 24px), var(--max-width));
    flex-direction: column;
  }
}
