/* ========= Geistwerkstatt Global Styles ========= */
:root {
  --primary: #ff5555;
  --primary-600: #ff6f6f;

  --accent: #ff937e;
  --accent-700: #e97c66;

  --success: #c1e59f;
  --warning: #f5c78a;
  --danger: #e86a6a;

  --bg: #fdf7f6;
  --bg-alt: #fff0ed;
  --surface: #ffffff;

  --muted: #b9a8a6;
  --text: #524342;
  --heading: #2f2423;

  --border: #e8d7d5;
  --shadow: 0 10px 30px rgba(90, 60, 55, 0.08);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --font-family: 'Inter', sans-serif;
}

/* ========= Reset & Baseline ========= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg-alt);
  font-family: var(--font-family);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-600); }

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  margin: 0 0 0.6em 0;
  font-weight: 700;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ===== HEADER ===== */
.header-gw { background: var(--heading); }
.bg-gw-dark { background: var(--heading); }

.gw-logo { width: 2.7rem; height: 2.7rem; }
.gw-logo-sm { width: 2.1rem; height: 2.1rem; }

.gw-brand {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.navbar-dark .nav-link {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 20px;
  transition: all .25s ease;
}
.navbar-dark .nav-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.gw-nav-gap { gap: 6px; }

.navbar-dark .navbar-nav .nav-link {
  color: var(--primary-600);
}
/* ===== HERO ===== */
.gw-hero {
  min-height: 100vh;
  padding: 160px 0 100px;
  background: url('../img/hero-bg.webp') center/cover no-repeat;
}

.gw-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(5px);
}

.gw-hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}
.gw-hero-title .accent { color: var(--primary); }

.gw-hero-sub {
  color: #e8e8e8;
  font-weight: 400;
  margin-top: 15px;
}

.gw-btn-cta {
  background: var(--primary);
  border: none;
  font-weight: 600;
  padding: 14px 28px;
}
.gw-btn-cta:hover {
  background: var(--primary-600);
}

.gw-hero-frame {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 420px;
}

.deco-icon {
  position: absolute;
  font-size: 28px;
  color: var(--accent);
  opacity: 0.75;
  animation: float 6s ease-in-out infinite;
}

.deco-1 { top: 14%; left: 6%; animation-delay: .2s; }
.deco-2 { bottom: 18%; right: 8%; animation-delay: .8s; }
.deco-3 { top: 40%; right: 14%; animation-delay: 1.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.gw-hero.gw-hero-loaded .gw-hero-title,
.gw-hero.gw-hero-loaded .gw-hero-sub,
.gw-hero.gw-hero-loaded .gw-btn-cta,
.gw-hero.gw-hero-loaded .gw-hero-frame {
  opacity: 0;
  transform: translateY(20px);
}

.gw-hero.animate-in .gw-hero-title {
  animation: heroFadeUp .8s ease-out forwards;
}

.gw-hero.animate-in .gw-hero-sub {
  animation: heroFadeUp .9s ease-out forwards;
}

.gw-hero.animate-in .gw-btn-cta {
  animation: heroFadeUp 1s ease-out forwards;
}

.gw-hero.animate-in .gw-hero-frame {
  animation: heroFadeUp 1.1s ease-out forwards;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/**/
.gw-werkstattprofil {
  background: var(--bg-alt);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.gw-w-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: var(--primary);
  opacity: 0.4;
}

.gw-w-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
}

.gw-w-text {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 520px;
}

.gw-w-points {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gw-w-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 1.05rem;
  color: var(--heading);
  font-weight: 500;
}

.gw-w-frame {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow);
}

.gw-w-listitem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--heading);
}
.gw-w-listitem:last-child {
  border-bottom: none;
}

.gw-w-listitem .icon {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 0.9rem;
}

.gw-w-deco {
  position: absolute;
  opacity: 0.08;
  font-size: 52px;
}
.deco-a {
  top: 14%;
  right: 5%;
}
.deco-b {
  bottom: 12%;
  left: 5%;
}
.gw-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all .8s ease;
}

.gw-reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gw-reveal .gw-w-title,
.gw-reveal .gw-w-text,
.gw-reveal .gw-w-points li,
.gw-reveal .gw-w-frame {
  opacity: 0;
  transform: translateY(25px);
  transition: all .7s ease;
}

.gw-reveal.active .gw-w-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .1s;
}

.gw-reveal.active .gw-w-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .25s;
}

.gw-reveal.active .gw-w-points li:nth-child(1) { transition-delay: .35s; }
.gw-reveal.active .gw-w-points li:nth-child(2) { transition-delay: .45s; }
.gw-reveal.active .gw-w-points li:nth-child(3) { transition-delay: .55s; }
.gw-reveal.active .gw-w-points li:nth-child(4) { transition-delay: .65s; }

.gw-reveal.active .gw-w-points li {
  opacity: 1;
  transform: translateY(0);
}

.gw-reveal.active .gw-w-frame {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .9s;
}
/**/
.gw-systemmodule {
  background: var(--bg-alt);
  position: relative;
  padding: 120px 0;
}

.gw-s-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary);
  opacity: .35;
}

.gw-s-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--heading);
}

.gw-s-module {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 32px 26px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
  margin-bottom: 34px;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}

.gw-s-module:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.s-left {
  margin-right: auto;
  max-width: 85%;
}

.s-right {
  margin-left: auto;
  max-width: 85%;
}

.gw-s-icon {
  width: 64px;
  height: 56px;
  background: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-600);
}

.gw-s-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}

.gw-s-content p {
  color: var(--text);
  font-size: 1.05rem;
  margin: 0;
}

.gw-systemmodule .gw-s-module {
  opacity: 0;
  transform: translateY(30px);
}

.gw-systemmodule.active .gw-s-module {
  opacity: 1;
  transform: translateY(0);
  transition: all .7s ease;
}

.gw-systemmodule.active .s-left:nth-child(3) { transition-delay: .15s; }
.gw-systemmodule.active .s-right:nth-child(4) { transition-delay: .30s; }
.gw-systemmodule.active .s-left:nth-child(5) { transition-delay: .45s; }
.gw-systemmodule.active .s-right:nth-child(6) { transition-delay: .60s; }
.gw-systemmodule.active .s-left:nth-child(7) { transition-delay: .75s; }

@media (max-width: 991px) {

  .gw-w-title {
    font-size: 2.1rem;
    text-align: center;
  }

  .gw-w-text {
    max-width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .gw-w-points li {
    font-size: 1rem;
    justify-content: center;
  }

  .gw-w-frame {
    padding: 28px 22px;
    margin-top: 24px;
  }

  .gw-w-deco {
    opacity: .05;
  }

  .gw-s-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .gw-s-module {
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .gw-s-icon {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {

  .gw-werkstattprofil {
    padding: 80px 0;
  }

  .gw-w-title {
    font-size: 1.9rem;
  }

  .gw-w-points li {
    gap: 10px;
    padding: 8px 0;
  }

  .gw-w-frame {
    padding: 24px 18px;
  }

  .gw-w-listitem {
    font-size: .95rem;
    gap: 10px;
  }

  .gw-s-module {
    padding: 26px 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .gw-s-content h3 {
    font-size: 1.25rem;
  }

  .gw-s-content p {
    font-size: .95rem;
    margin-top: 6px;
  }

  .gw-s-icon {
    margin-bottom: 14px;
  }
}

@media (max-width: 575px) {

  .gw-w-title {
    font-size: 1.7rem;
  }

  .gw-w-text {
    font-size: .95rem;
  }

  .gw-w-listitem {
    font-size: .92rem;
  }

  .gw-w-accent-line {
    width: 4px;
    opacity: .25;
  }

  .gw-systemmodule {
    padding: 80px 0;
  }

  .gw-s-title {
    font-size: 1.8rem;
  }

  .gw-s-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .gw-s-module {
    padding: 22px 18px;
  }
}
/**/
.gw-pricing-section {
  background: linear-gradient(135deg, var(--primary), var(--surface));
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}

.gw-pricing-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,85,85,0.18), transparent 60%),
  radial-gradient(circle at 80% 70%, rgba(255,147,126,0.18), transparent 60%);
  filter: blur(50px);
  opacity: .6;
}

.gw-p-title {
  font-size: 2.6rem;
  color: var(--bg-alt);
}

.gw-p-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: .35s ease;
  position: relative;
  overflow: hidden;
}

.gw-p-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,85,85,0.12), transparent 70%);
  opacity: 0;
  transition: .4s ease;
}

.gw-p-card:hover::after {
  opacity: 1;
}

.gw-p-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.gw-p-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 20px 44px rgba(255,85,85,0.15);
}

.gw-p-label {
  font-size: .95rem;
  font-weight: 700;
  opacity: .75;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gw-p-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
}

.gw-p-desc {
  color: var(--text);
  font-size: .95rem;
}

.gw-p-list li {
  padding: 6px 0;
  font-size: .97rem;
  font-weight: 500;
  color: var(--heading);
  display: flex;
  gap: 10px;
  align-items: center;
}
/**/
.gw-advantages-slider {
  padding-top: 160px;
  padding-bottom: 160px;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
  position: relative;
}

.gw-adv-bg, .gw-adv-bg2 {
  position: absolute;
  width: 480px;
  height: 480px;
  filter: blur(90px);
  opacity: .4;
  border-radius: 50%;
  z-index: 0;
}

.gw-adv-bg { top: -120px; left: -120px; background: rgba(255,85,85,.25); }
.gw-adv-bg2 { bottom: -120px; right: -120px; background: rgba(255,147,126,.25); }

.gw-adv-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading);
  z-index: 2;
}

.gw-adv-illustration {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.gw-floating-icon {
  position: absolute;
  font-size: 32px;
  opacity: .35;
  animation: floatIcon 6s ease-in-out infinite;
  color: var(--primary);
}

.fi-1 { top: -15px; left: -20px; animation-delay: .2s; }
.fi-2 { bottom: -18px; right: -10px; animation-delay: .6s; }
.fi-3 { top: 40%; right: -18px; animation-delay: 1.1s; }

@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.gw-adv-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 50px 34px;
  min-height: 380px;
  max-width: 540px;
  box-shadow: var(--shadow);
  transition: .4s ease;
}

.gw-adv-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.gw-adv-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.gw-adv-avatar {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary);
}

.gw-adv-rating {
  text-align: center;
  margin: 10px 0 16px;
}

.gw-adv-rating i {
  color: #f7c65a;
  margin: 0 3px;
  font-size: 18px;
}

.gw-adv-text {
  margin-top: 14px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.swiper-slide {
  opacity: .35;
  transform: translateY(18px) scale(.92);
  transition: .5s ease;
}

.swiper-slide-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gw-adv-next, .gw-adv-prev {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  transition: .25s ease;
  font-size: 16px;
}

.gw-adv-prev { left: 10px; }
.gw-adv-next { right: 10px; }
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after, .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after  {
  font-size: 1rem;
  font-weight: 900;
}
.gw-adv-next:hover, .gw-adv-prev:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(255,85,85,.25);
}

.swiper-pagination-bullet {
  background: var(--primary);
  opacity: .4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
/**/
.gw-results {
  padding-top: 160px;
  padding-bottom: 160px;
  background: linear-gradient(160deg, var(--primary), var(--surface));
  position: relative;
}

.gw-res-bg, .gw-res-bg2 {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .28;
  z-index: 0;
}

.gw-res-bg { top: -120px; left: -120px; background: rgba(255,255,255,.28); }
.gw-res-bg2 { bottom: -120px; right: -120px; background: rgba(255,255,255,.18); }

.gw-res-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--heading);
  position: relative;
  z-index: 2;
}

.gw-res-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 42px 34px;
  box-shadow: var(--shadow);
  position: relative;
  transition: .35s ease;
  display: flex;
  flex-direction: column;
}

.gw-res-item::after {
  content: "";
  position: absolute;
  bottom: -7px;
  right: -14px;
  width: 111px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 85, 85, .15);
  filter: blur(14px);
}

.gw-res-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 55px rgba(0,0,0,.15);
}

.gw-res-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}

.gw-res-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}

.gw-res-item p {
  color: var(--text);
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: 10px;
}

.tall { min-height: 380px; }
.wide { min-height: 300px; }

@media (max-width: 768px) {
  .tall, .wide { min-height: auto; }
}
/**/
.gw-contact {
  background: var(--bg-alt);
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
}

.gw-contact-bg, .gw-contact-bg2 {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .25;
  z-index: 0;
}

.gw-contact-bg { top: -120px; left: -120px; background: rgba(255,147,126,.25); }
.gw-contact-bg2 { bottom: -120px; right: -120px; background: rgba(255,85,85,.25); }

.gw-contact-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--heading);
}

.gw-contact-desc {
  color: var(--text);
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.gw-contact-wrapper {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.gw-input {
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  transition: .3s ease;
}

.gw-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,85,85,.25);
}

.gw-input:hover {
  border-color: var(--primary-600);
}

.error-message {
  color: var(--danger);
  font-size: .85rem;
  margin-top: 6px;
}

.error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 2px rgba(230,138,138,.3);
}

.gw-btn-submit {
  background: var(--primary);
  border: none;
  font-weight: 600;
  transition: .3s ease;
}

.gw-btn-submit:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
}

.gw-contact-cta {
  background: var(--bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.gw-contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gw-contact-points li {
  margin: 10px 0;
  font-weight: 500;
  color: var(--heading);
}
/**/
.gw-footer {
  background: linear-gradient(160deg, #1a1a1c, #2a2a2d);
  padding-top: 120px;
  padding-bottom: 60px;
  color: #f2f2f2;
}

.gw-footer-bg, .gw-footer-bg2 {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  z-index: 0;
}

.gw-footer-bg { top: -120px; left: -120px; background: rgba(255,85,85,.35); }
.gw-footer-bg2 { bottom: -120px; right: -120px; background: rgba(255,147,126,.35); }

.gw-footer-logo-img {
  width: 42px;
  height: 42px;
}

.gw-footer-brand span {
  font-size: 1.4rem;
  font-weight: 700;
}

.gw-footer-text {
  font-size: .95rem;
  line-height: 1.55;
  opacity: .85;
}

.gw-footer-tag {
  font-weight: 600;
  margin-top: 12px;
  font-size: 1rem;
}

.gw-footer-links h4,
.gw-footer-contact h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.gw-footer-links ul {
  list-style: none;
  padding: 0;
}

.gw-footer-links li {
  margin-bottom: 10px;
}

.gw-footer-links a {
  color: #eaeaea;
  opacity: .85;
  transition: .25s ease;
}

.gw-footer-links a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 6px;
}

.gw-footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.gw-footer-contact-item i {
  font-size: 20px;
  color: var(--primary);
}

.gw-footer-contact-item a {
  color: #eee;
  opacity: .85;
  transition: .25s;
}

.gw-footer-contact-item a:hover {
  color: var(--primary);
  opacity: 1;
}

.gw-footer-copy {
  opacity: .75;
}

.gw-footer-legal a {
  margin-left: 16px;
  color: #ddd;
  opacity: .75;
}

.gw-footer-legal a:hover {
  opacity: 1;
  color: var(--primary);
}
/**/
.cookie-wrapper {
  max-width: 620px;
  z-index: 9999;
  transform: translateY(150%);
  opacity: 0;
  transition: all .5s ease;
}

.cookie-wrapper.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-wrapper.hidden {
  transform: translateY(150%);
  opacity: 0;
}

.cookie-text a:hover {
  text-decoration: underline;
}
