@font-face {
  font-display: swap; 
  font-family: 'PlayfairDisplay';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/PlayfairDisplay-VariableFont_wght.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/Inter-VariableFont_opsz\,wght.woff2') format('woff2'); 
}


:root {
  --primary-font:'PlayfairDisplay';
  --secondary-font:'Inter';
    --primary-color:#0c0a08;
    --secondary-color:#8C8175;
    --hover-color:#756b61;
    --nav-color:#584737;
    --background: #F7F5F2; 
    --alt-section-color:#EFEDE9;
    --light: #F5F3F0;
    --text: #0c0a08;
    --border-radius: 12px;
    --box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    --border: 1px solid rgba(0,0,0,0.04);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font-family: var(--secondary-font);
      background: var(--background);
      color: var(--primary-color);
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
  }

/* =========================
 NAVIGATION
========================= */
.logo {
  display: flex;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.4px;
  font-family: var(--primary-font);
}

.logo img {
  height: 30px;
  border-radius: 50px; /* falls Icon weich wirken soll */
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #F7F5F2;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  margin-left: auto; 
  font-family: var(--primary-font);

}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 30px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--primary-color);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--nav-color);
  font-size: 15px;
  letter-spacing: 0.4px;
  margin: 0;
}
.nav-links a:hover {
  color: var(--primary-color);
}

.burger {
  display: none;
}
/* =========================
 RESPONSIVE NAVIGATION
========================= */

@media (max-width: 900px) {
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  margin-left: 0;
}

.nav-links {
  position: fixed;
  top: 4em;
  right: 0;
  width: 45vw;
  height: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
  z-index: 10;
  background-color:#F7F5F2;
  border-left:  1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  gap: 0;
  padding: 1rem 0;
}

.nav-links li {
  opacity: 0;
  margin: 1.25em 1em; 
}

.nav-links a {
  color: #584737;
  text-decoration: none;
  letter-spacing: 0.12em;
  font-size: 1em;
  margin: 0;
}
.nav-links a:hover{
color:#0c0a08;
}

.burger {
  display: block;
  cursor: pointer;
  margin-left: auto;
  z-index: 20;
}

.burger div {
  width: 35px;
  height: 3px;
  background-color:#0c0a08;
  margin: 5px;
  transition: all 0.3s ease;     
}

/* Active navigation */
.nav-active {
  transform: translateX(0); /* FIX */
}

@keyframes navLinkFade {
  from {
      opacity: 0;
      transform: translateX(50px);
  }
  to {
      opacity: 1;
      transform: translateX(0px);
  }
}
/* Burger Animation */
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}
}

.nav-links a.nav-highlight {
  color: var(--primary-color);
  border-bottom: 1px solid var(--nav-color);
  padding-bottom: 2px;
}

.nav-links a.nav-highlight:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

/* =========================
MAIN PAGE
========================= */

.w48-page {
background: var(--background);
color: var(--primary-color);
}

.w48-hero {
display: grid;
grid-template-columns: 1.05fr 0.95fr;
min-height: 82vh;
align-items: center;
gap: 4rem;
padding: 6rem 6vw;
}

.w48-kicker {
font-family: var(--secondary-font);
font-size: 0.78rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--secondary-color);
margin-bottom: 1.2rem;
font-weight: 400;
}

.w48-hero h1,
.w48-section h2,
.w48-cta h2 {
font-family: var(--primary-font);
font-weight: 400;
line-height: 1.05;
color: var(--primary-color);
}

.w48-hero h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 920px;
}

.w48-hero h1 span {
  display: block;
  font-size: 0.72em;
  font-weight: 400;
  line-height: 1.05;
  margin-top: 0.18em;
}

.w48-hero__text {
max-width: 620px;
margin: 2rem 0 0 0;
font-size: clamp(1rem, 1.3vw, 1.25rem);
color: var(--nav-color);
}
.w48-hero__text2 {
max-width: 620px;
margin: 1rem 0;
font-size: clamp(1rem, 1.3vw, 1.25rem);
color: var(--nav-color);
}

.w48-button {
display: inline-block;
padding: 1rem 1.6rem;
background: var(--nav-color);
color: var(--background);
text-decoration: none;
font-size: 0.9rem;
letter-spacing: 0.08em;
text-transform: uppercase;
font-weight: 400;
border-radius: 0;
transition: background 0.3s ease;
}

.w48-button:hover {
background: var(--hover-color);
}


.w48-hero__image img,
.w48-cta__image img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}

.w48-hero__image {
border-left: 1px solid var(--secondary-color);
padding-left: 2rem;
display:flex;
flex-direction:column;
align-items:center;
}

.wf-badge{
display:inline-flex;
align-items:center;
justify-content:center;
margin-top:20px;
padding:10px 18px;
border:1px solid var(--primary-color);
border-radius:999px;
background:#f7f3ee;
color:var(--primary-color);
font-size:14px;
line-height:1.4;
font-weight:500;
letter-spacing:0.02em;
font-family:var(--secondary-font);
text-align:center;
}

.w48-included-title{
margin:32px 0 24px;
padding-bottom:16px;
border-bottom:1px solid #e8e0d8;

font-family:var(--primary-font);
font-size:1.75rem!important;
font-weight:400;
line-height:1.15;
color:var(--primary-color)!important;
letter-spacing:-0.03em;
}

.w48-included-list{
list-style:none;
margin:0;
padding:0;
}

.w48-included-list li{
position:relative;
padding:20px 0 20px 36px;
border-bottom:1px solid #e8e0d8;
font-family:var(--primary-font);
font-size:1.2rem;
line-height:1.6;
font-weight:400;
color:var(--primary-color);
}

.w48-included-list li::before{
content:"—";
position:absolute;
left:0;
top:18px;
font-weight:400;
}

.w48-section {
padding: 7rem 6vw;
}

.w48-section:nth-of-type(even) {
background: var(--alt-section-color);
}

.w48-section__inner {
max-width: 1180px;
margin: 0 auto;
}

.w48-section h2,
.w48-cta h2 {
font-size: clamp(2.4rem, 5vw, 5.5rem);
letter-spacing: -0.04em;
max-width: 920px;
margin-bottom: 2rem;
}

.w48-section p,
.w48-cta p {
max-width: 760px;
font-size: clamp(1rem, 1.2vw, 1.18rem);
color: var(--nav-color);
margin-bottom: 1.2rem;
}
.w48-solution-text{
margin:2rem 0;
}

.w48-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: start;
}

.w48-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(--secondary-color);
margin-top: 3.5rem;
}

.w48-cards article {
background: var(--background);
padding: 2.5rem;
min-height: 320px;
}

.w48-cards span {
display: block;
font-family: var(--primary-font);
font-size: 3rem;
color: var(--secondary-color);
margin-bottom: 2rem;
font-weight: 400;
}

.w48-cards h3 {
font-family: var(--primary-font);
font-size: 2rem;
line-height: 1.15;
font-weight: 400;
margin-bottom: 1rem;
}

.w48-cards p {
font-size: 1rem;
margin-bottom: 0;
}

.w48-cta {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 5rem;
align-items: center;
padding: 7rem 6vw;
background: var(--primary-color);
color: var(--background);
}

.w48-cta h2,
.w48-cta p {
color: var(--background);
}

.w48-cta .w48-kicker {
color: var(--secondary-color);
}

.w48-cta .w48-button {
background: var(--nav-color);
color: var(--background);
margin-top: 1rem;
}

.w48-cta .w48-button:hover {
background: var(--secondary-color);
color: var(--background);
}

.w48-list {
display: grid;
grid-template-columns: repeat(4, 1fr);
border-top: 1px solid var(--secondary-color);
border-left: 1px solid var(--secondary-color);
margin-top: 3rem;
}

.w48-list div {
padding: 2rem;
border-right: 1px solid var(--secondary-color);
border-bottom: 1px solid var(--secondary-color);
font-family: var(--primary-font);
font-size: clamp(1.5rem, 2.5vw, 2.4rem);
line-height: 1.15;
font-weight: 400;
}

@media (max-width: 980px) {
.w48-kicker {
  margin-top: 20px;
}
.w48-hero__text2{
  margin: 2rem 0;
}
.w48-hero,
.w48-grid,
.w48-cta {
  grid-template-columns: 1fr;
}
.w48-grid {
  gap: 2rem;
}

.w48-hero {
  padding-top: 4rem;
  gap: 3rem;
}

.w48-hero__image {
  border-left: 0;
  padding-left: 0;
}

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

.w48-list {
  grid-template-columns: 1fr 1fr;
}
.w48-solution-text {
  padding-top: 60px;
}
.w48-solution h2 {
  margin-bottom: -40px;
}
.w48-included-title{
  margin:0 0 24px;
}
}

@media (max-width: 640px) {
.w48-hero,
.w48-section,
.w48-cta {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}

.w48-hero {
  min-height: auto;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.w48-section,
.w48-cta {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.w48-hero h1 {
  font-size: clamp(3rem, 17vw, 5rem);
}

.w48-list {
  grid-template-columns: 1fr;
}

.w48-cards article {
  padding: 2rem;
  min-height: auto;
}

.w48-button {
  width: 100%;
  text-align: center;
}

.w48-included-title{
  margin:0 0 24px;
}

}
/* =========================
 FOOTER 
========================= */

.footer {
  background: var(--primary-color);
  padding: 80px 0 40px;
  border-top: 1px solid var(--secondary-color);
  
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOP */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* BRAND */
.footer-brand {
  font-size: 15px;
  color: var(--secondary-color);
}

/* NAV */
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  font-size: 15px;
  color: var(--secondary-color);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--hover-color);
}

/* BOTTOM (LEGAL) */
.footer-bottom {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--secondary-color);

  display: flex;
  gap: 20px;
}

.footer-bottom a {
  font-size: 13px;
  color: #a39a90;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--secondary-color);
}


.footer-credit {
  font-size: 0.9rem;
  color: var(--secondary-color); 
  margin-top: 30px;
}

.footer-credit a {
  color: var(--secondary-color);
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--background);
}

.heart {
  color: var(--background); /* Herz weiß */
  font-size: 1rem;
}


@media (max-width: 768px) {

  .footer-top {
      flex-direction: column;
      gap: 30px;
  }

  .footer-nav {
      flex-direction: column;
      gap: 14px;
  }

  .footer-brand {
      order: 2;
      margin-top: 10px;
  }

  .footer-nav {
      order: 1;
  }

  .footer-bottom {
      flex-direction: column;
      gap: 10px;
      margin-top: 40px;
  }
}

/* =========================
 FINAL CTA
========================= */
.w48-final-cta {
  background: var(--primary-color);
  color: #fff;
  padding: clamp(80px, 12vw, 140px) 20px;
  overflow: hidden;
}

.w48-final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.w48-final-kicker {
  font-family: var(--secondary-font);
  font-size: clamp(0.7rem, 1.8vw, 0.8rem);
  letter-spacing: clamp(2px, 0.6vw, 4px);
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: clamp(28px, 5vw, 40px);
}

.w48-final-cta h2 {
  font-family: var(--primary-font);
  font-size: clamp(2.2rem, 9vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 clamp(28px, 5vw, 40px);
}

.w48-final-intro {
  font-family: var(--secondary-font);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.7;
  color: #d8d1ca;
  margin: 0 auto clamp(26px, 5vw, 35px);
  max-width: 620px;
}

.w48-final-text,   
.w48-final-requirement{
  font-family: var(--secondary-font);
  font-size: clamp(0.95rem, 2.3vw, 1rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 auto clamp(28px, 5vw, 35px);
}


.w48-final-note {
  font-family: var(--primary-font);
  font-size: clamp(1.5rem, 3.3vw, 2rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: clamp(40px, 7vw, 60px) auto clamp(40px, 7vw, 60px);
}

.w48-final-steps {
  list-style: none;
  padding: 0;
  margin: clamp(48px, 8vw, 70px) auto;
  max-width: 540px;
  counter-reset: step;
  margin-bottom: 25px;
}

.w48-final-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  text-align: left;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--secondary-font);
  line-height: 1.5;
}

.w48-final-steps li:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.w48-final-steps li::before {
  content: "0" counter(step);
  font-family: var(--primary-font);
  font-size: 1.15rem;
  color: var(--secondary-color);
}

.w48-final-highlight {
  color: #fff;
  font-weight: 500;
}

.w48-final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 62px;
  padding: 1rem 1.6rem;
  background: var(--nav-color);
  border: 1px solid var(--nav-color);
  color: var(--background);
  text-decoration: none;
  font-family: var(--secondary-font);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease;
  border-radius: 0;
  text-align: center;
} 


.w48-final-button:hover {
  background: var(--hover-color);
  color: var(--background);
  border-color: var(--hover-color);
}

@media (max-width: 480px) {
  .w48-final-cta {
    padding: 72px 18px;
  }

  .w48-final-cta h2 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .w48-final-steps {
    max-width: 100%;
  }

  .w48-final-steps li {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    font-size: 0.95rem;
  }

  .w48-final-button {
    width: 100%;
    padding: 18px 20px;
    letter-spacing: 1.6px;
    font-size: 0.72rem;
  }
} 

.product-license-note {
  margin: 32px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--secondary-color);
  
}



