@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --petrol: #102A2C;
  --teal: #163B3D;
  --cream: #F5F1E8;
  --soft-cream: #FAF7F0;
  --sand: #D8C9B1;
  --copper: #C46A3A;
  --text: #1A1A1A;
  --muted: #5F625D;
  --green: #378A7D;
  --green-hover: #2f7b70;
  --whatsapp: #25D366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--text);
}

::selection {
  background: var(--copper);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--text);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--petrol);
  backdrop-filter: blur(20px);
  transition: background-color 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 241, 232, 0.92);
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: inline-flex;
}

.claratum-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.claratum-logo-mark .logo-bg,
.claratum-logo-mark .logo-bar-1,
.claratum-logo-mark .logo-bar-2,
.claratum-logo-mark .logo-bar-3 {
  fill: var(--cream);
  transition: fill 300ms ease;
}

.claratum-logo-word {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
  transition: color 300ms ease;
}

.site-header.is-scrolled .claratum-logo-mark .logo-bg,
.site-header.is-scrolled .claratum-logo-mark .logo-bar-1,
.site-header.is-scrolled .claratum-logo-mark .logo-bar-2,
.site-header.is-scrolled .claratum-logo-mark .logo-bar-3 {
  fill: var(--petrol);
}

.site-header.is-scrolled .claratum-logo-word {
  color: var(--petrol);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  padding: 10px 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(16, 42, 44, 0.10);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--green-hover);
  box-shadow: 0 14px 32px rgba(16, 42, 44, 0.18);
}

/* Hero */

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--petrol);
  padding: 128px 32px;
}

.hero-light {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(64px);
}

.hero-light-left {
  left: -12%;
  top: 20%;
  width: 420px;
  height: 420px;
  background: rgba(196, 106, 58, 0.12);
}

.hero-light-right {
  right: -10%;
  bottom: -16%;
  width: 500px;
  height: 500px;
  background: rgba(216, 201, 177, 0.10);
}

.hero-grid {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.008;
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent 18px,
    black 72px,
    black calc(100% - 72px),
    transparent calc(100% - 18px),
    transparent 100%
  );
}

.hero-grid-pattern {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(245, 241, 232, 0.22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 241, 232, 0.22) 1px, transparent 1px);
  background-size: 96px 96px;
  background-position: 48px 48px;
}

.hero-content-dim {
  pointer-events: none;
  position: absolute;
  left: 6%;
  top: 14%;
  z-index: 1;
  width: 68%;
  height: 70%;
  border-radius: 64px;
  background: radial-gradient(
    ellipse at 28% 36%,
    rgba(16, 42, 44, 0.98) 0%,
    rgba(16, 42, 44, 0.94) 34%,
    rgba(16, 42, 44, 0.76) 58%,
    rgba(16, 42, 44, 0.34) 78%,
    transparent 100%
  );
  filter: blur(14px);
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 960px;
}

.hero-copy h1 {
  max-width: 980px;
  color: var(--cream);
  font-size: 72px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 760px;
  margin-top: 32px;
  color: rgba(245, 241, 232, 0.76);
  font-size: 20px;
  line-height: 1.8;
}

/* Sections */

.section {
  padding: 112px 32px;
}

.section-cream {
  background: var(--cream);
}

.section-soft {
  background: var(--soft-cream);
}

.section-inner {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: flex-start;
}

.section-header {
  max-width: 860px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--copper);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-header h2 {
  color: var(--petrol);
  font-size: 48px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.section-header p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.measure-content {
  display: grid;
  gap: 32px;
}

.soft-card {
  border: 1px solid rgba(16, 42, 44, 0.10);
  border-radius: 32px;
  background: var(--soft-cream);
  padding: 32px;
  box-shadow: 0 1px 2px rgba(16, 42, 44, 0.05);
}

.soft-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.mini-eyebrow {
  margin-bottom: 20px;
  color: var(--copper) !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-stack {
  display: grid;
  gap: 20px;
}

.info-list {
  border: 1px solid rgba(16, 42, 44, 0.10);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  padding: 28px;
  box-shadow: 0 1px 2px rgba(16, 42, 44, 0.05);
}

.info-list-title {
  margin-bottom: 20px;
  color: var(--copper);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-list-items {
  display: grid;
  gap: 16px;
}

.info-list-item {
  display: flex;
  gap: 12px;
}

.info-list-item span {
  margin-top: 6px;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(196, 106, 58, 0.12);
  color: var(--copper);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.info-list-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* Table */

.method-table-wrap {
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 44, 0.10);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 1px 2px rgba(16, 42, 44, 0.05);
}

.method-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.method-table thead {
  background: var(--petrol);
  color: var(--cream);
}

.method-table th {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 800;
}

.method-table td {
  padding: 20px 24px;
  border-top: 1px solid rgba(16, 42, 44, 0.10);
  vertical-align: top;
  font-size: 16px;
  line-height: 1.75;
}

.method-table td:first-child {
  width: 34%;
  color: var(--petrol);
  font-weight: 700;
}

.method-table td:last-child {
  color: var(--muted);
}

/* Clarity areas */

.clarity-section {
  padding: 80px 32px;
}

.clarity-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
}

.clarity-aside {
  position: sticky;
  top: 112px;
  align-self: flex-start;
}

.area-number {
  color: var(--copper);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.clarity-aside h2 {
  margin-top: 16px;
  color: var(--petrol);
  font-size: 48px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.small-line {
  width: 64px;
  height: 1px;
  margin-top: 24px;
  background: var(--copper);
}

.area-question {
  margin-top: 24px;
  color: var(--petrol);
  font-size: 18px;
  line-height: 1.78;
  font-weight: 700;
}

.clarity-content {
  display: grid;
  gap: 32px;
}

/* Rating */

.rating-section {
  background: #ffffff;
}

.rating-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.rating-card {
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 28px;
  background: var(--petrol);
  padding: 28px;
  box-shadow: 0 18px 38px rgba(16, 42, 44, 0.10);
}

.rating-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.rating-card-top span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(196, 106, 58, 0.16);
  padding: 4px 12px;
  color: var(--copper);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}

.rating-card-top h3 {
  color: var(--cream);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.rating-card p {
  margin-top: 20px;
  color: rgba(245, 241, 232, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

/* Footer */

.site-footer {
  background: var(--petrol);
  padding: 56px 32px 40px;
}

.footer-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 56px;
  padding-top: 40px;
}

.footer-logo .claratum-logo-mark .logo-bg,
.footer-logo .claratum-logo-mark .logo-bar-1,
.footer-logo .claratum-logo-mark .logo-bar-2,
.footer-logo .claratum-logo-mark .logo-bar-3 {
  fill: var(--cream);
}

.footer-logo-word {
  color: var(--cream);
  font-size: 18px;
}

.footer-text {
  max-width: 420px;
  margin-top: 20px;
  color: rgba(245, 241, 232, 0.58);
  font-size: 14px;
  line-height: 1.75;
}

.footer-contact {
  margin-top: 24px;
  display: grid;
  gap: 8px;
  color: rgba(245, 241, 232, 0.66);
  font-size: 14px;
  font-weight: 700;
}

.footer-contact a,
.footer-links a {
  transition: color 180ms ease;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--cream);
}

.mobile-call {
  display: none;
}

.desktop-phone {
  display: block;
}

.whatsapp {
  color: var(--whatsapp);
}

.footer-heading {
  color: var(--copper);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  color: rgba(245, 241, 232, 0.66);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 241, 232, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(245, 241, 232, 0.42);
  font-size: 12px;
  line-height: 1.6;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.headline-desktop {
  display: inline;
}

.headline-mobile {
  display: none;
}

@media (max-width: 768px) {
  [id] {
    scroll-margin-top: 84px;
  }

  .header-inner {
    padding: 14px 20px;
  }

  .claratum-logo {
    gap: 10px;
  }

  .claratum-logo-mark {
    width: 32px;
    height: 32px;
  }

  .claratum-logo-word {
    font-size: 18px;
  }

  .header-cta {
    padding: 9px 14px;
    font-size: 13px;
  }

  .hero-section {
    padding: 92px 20px 96px;
  }

  .hero-light-left {
    width: 320px;
    height: 320px;
  }

  .hero-light-right {
    width: 340px;
    height: 340px;
  }

  .hero-grid {
    opacity: 0.007;
  }
  
  .headline-desktop {
    display: none;
  }
  
  .headline-mobile {
    display: inline;
  }

  .hero-grid-pattern {
    background-size: 80px 80px;
    background-position: 40px 40px;
  }

  .hero-content-dim {
    left: -10%;
    top: 12%;
    width: 120%;
    height: 72%;
    border-radius: 48px;
  }

  .hero-copy h1 {
    font-size: 48px;
    line-height: 1.06;
  }

  .hero-copy p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.75;
  }

  .section {
    padding: 80px 20px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-header h2 {
    font-size: 38px;
    line-height: 1.12;
  }

  .section-header p {
    font-size: 17px;
    line-height: 1.75;
  }

  .soft-card {
    border-radius: 26px;
    padding: 24px;
  }

  .soft-card p {
    font-size: 17px;
    line-height: 1.75;
  }

  .info-list {
    border-radius: 24px;
    padding: 24px;
  }

  .method-table-wrap {
    margin-top: 36px;
    border-radius: 24px;
  }

  .method-table,
  .method-table thead,
  .method-table tbody,
  .method-table tr,
  .method-table th,
  .method-table td {
    display: block;
    width: 100%;
  }

  .method-table thead {
    display: none;
  }

  .method-table tr {
    padding: 20px;
    border-top: 1px solid rgba(16, 42, 44, 0.10);
  }

  .method-table tr:first-child {
    border-top: 0;
  }

  .method-table td {
    padding: 0;
    border-top: 0;
  }

  .method-table td:first-child {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .method-table td:first-child::before {
    content: "Bereich";
    display: block;
    margin-bottom: 4px;
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .method-table td:last-child::before {
    content: "Kernfrage";
    display: block;
    margin-bottom: 4px;
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .clarity-section {
    padding: 64px 20px;
  }

  .clarity-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .clarity-aside {
    position: static;
  }

  .clarity-aside h2 {
    font-size: 40px;
  }

  .area-question {
    font-size: 17px;
  }

  .rating-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .rating-card {
    border-radius: 24px;
    padding: 24px;
  }

  .site-footer {
    padding: 48px 20px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 24px;
  }

  .mobile-call {
    display: inline;
  }

  .desktop-phone {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}