:root {
  --primary: #4E71FF;
  --primary-600: #3F5ED4;

  --accent: #8DD8FF;
  --accent-700: #6FBFE6;

  --success: #7ACCB1;
  --warning: #F4C98D;
  --danger: #E57373;

  --bg: #F5F8FF;
  --bg-alt: #EEF3FF;
  --surface: #FFFFFF;

  --muted: #9AA7C3;
  --text: #384054;
  --heading: #1A2338;

  --border: #DDE5FF;
  --shadow: 0 10px 28px rgba(40, 60, 120, 0.08);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --font-family: 'Plus Jakarta Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-family);
  line-height: 1.7;
}
.bg-dark { background: var(--heading) !important; }
.gw-header .row { min-height: 92px; }
.gw-logo-img { width: 2.6rem; height: 2.6rem; margin-right: 12px; }
.gw-brand-text { font-size: 26px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.navbar-dark .navbar-nav .nav-link {
  color: #fff; padding: 16px 16px; font-weight: 500;
  transition: all .25s ease; text-transform: uppercase; letter-spacing: 0.04em;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--accent); transform: translateY(-2px);
}
.navbar-nav { gap: 6px; }

.gw-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  background: radial-gradient(circle at 20% 30%, #6fbfe6 0%, #4e71ff 45%, #1a2338 100%);
  overflow: hidden;
}

.gw-decor-1 {
  position: absolute;
  top: 10%; left: -5%;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.09);
  border-radius: 50%;
  filter: blur(40px);
}
.gw-decor-2 {
  position: absolute;
  bottom: -5%; right: -8%;
  width: 320px; height: 320px;
  background: rgba(141,216,255,0.15);
  border-radius: 50%;
  filter: blur(40px);
}

.gw-hero-title {
  font-size: 3rem; font-weight: 700; color: #fff; line-height: 1.2;
}
.gw-hero-sub {
  margin: 20px 0 36px;
  color: #e7ecff;
  font-weight: 400;
  max-width: 560px;
  line-height: 1.55;
}

.gw-hero-btn {
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border: none;
  color: #fff;
  transition: all .3s ease;
}
.gw-hero-btn:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(30, 60, 140, 0.25);
}

.gw-hero-illustration {
  max-width: 440px;
  padding: 10px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}
.gw-hero-illustration img {
  border-radius: var(--radius-md);
}
.gw-hero-illustration::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  opacity: 0.3;
}

.gw-floating-icons {
  position: relative;
  margin-top: 50px;
}

.gw-floating-icons i {
  color: var(--accent);
  font-size: 1.5rem;
  position: absolute;
  opacity: 0.85;
}

.gw-floating-1 { left: 10px; top: -20px; animation: float1 4s ease-in-out infinite; }
.gw-floating-2 { left: 90px; top: 20px; animation: float2 5s ease-in-out infinite; }
.gw-floating-3 { left: 160px; top: -10px; animation: float3 3.5s ease-in-out infinite; }

@keyframes float1 { 0% {transform: translateY(0);} 50% {transform: translateY(-14px);} 100% {transform: translateY(0);} }
@keyframes float2 { 0% {transform: translateY(0);} 50% {transform: translateY(12px);} 100% {transform: translateY(0);} }
@keyframes float3 { 0% {transform: translateY(0);} 50% {transform: translateY(-10px);} 100% {transform: translateY(0);} }
/**/
.gw-essenz-section {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f7faff 100%);
  overflow: hidden;
}

.gw-essenz-decor-1 {
  position: absolute;
  top: -5%; left: -8%;
  width: 260px; height: 260px;
  background: rgba(78,113,255,0.13);
  border-radius: 50%;
  filter: blur(45px);
}
.gw-essenz-decor-2 {
  position: absolute;
  bottom: 20%; right: -6%;
  width: 300px; height: 300px;
  background: rgba(141,216,255,0.2);
  border-radius: 50%;
  filter: blur(55px);
}

.gw-essenz-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--heading);
}
.gw-essenz-sub {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto;
}

.gw-essenz-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  min-height: 370px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}

.gw-essenz-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(40,60,120,0.16);
}

.gw-card-top {
  text-align: center;
  margin-bottom: 20px;
}
.gw-top-icon {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.gw-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading);
}

.gw-card-body p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text);
}
.gw-bullet {
  margin-right: 6px;
  color: var(--primary);
  font-size: .75rem;
}

.gw-card-footer {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-weight: 500;
  font-size: 1rem;
  color: var(--heading);
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
}
.gw-footer-icon {
  font-size: 1rem;
  color: var(--primary);
}
/**/
.gw-leitbild-section {
  position: relative;
  padding: 160px 0;
  background: #f5f8ff;
  overflow: hidden;
}

.gw-leitbild-decor-1 {
  position: absolute;
  top: 10%; left: -8%;
  width: 260px; height: 260px;
  background: rgba(78,113,255,0.12);
  border-radius: 50%;
  filter: blur(50px);
}

.gw-leitbild-decor-2 {
  position: absolute;
  bottom: 12%; right: -6%;
  width: 320px; height: 320px;
  background: rgba(141,216,255,0.2);
  border-radius: 50%;
  filter: blur(65px);
}

.gw-leitbild-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.01em;
}

.gw-leitbild-sub {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 16px auto 0 auto;
}

.gw-leitbild-illustration {
  max-width: 340px;
  padding: 10px;
  box-shadow: var(--shadow);
  position: relative;
}
.gw-leitbild-illustration img {
  border-radius: var(--radius-md);
}

.gw-leitbild-illustration::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  opacity: 0.35;
}

.gw-pillar-horizontal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  padding: 24px 26px;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}

.gw-pillar-horizontal:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 40px rgba(40,60,120,0.14);
}

.gw-pillar-icon-wrap {
  min-width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  animation: iconFloat 4s ease-in-out infinite;
}

.gw-pillar-icon {
  font-size: 1.7rem;
  color: #fff;
}

.gw-pillar-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 10px;
}

.gw-pillar-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.55;
}

@keyframes iconFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
/**/
.gw-metrics-section {
  position: relative;
  padding: 160px 0;
  background: linear-gradient(to bottom, #f7faff, #eef4ff);
  overflow: hidden;
}

.gw-metrics-decor-1 {
  position: absolute;
  top: 10%; left: -8%;
  width: 260px; height: 260px;
  background: rgba(78,113,255,0.12);
  border-radius: 50%;
  filter: blur(50px);
}

.gw-metrics-decor-2 {
  position: absolute;
  bottom: 12%; right: -6%;
  width: 320px; height: 320px;
  background: rgba(141,216,255,0.2);
  border-radius: 50%;
  filter: blur(65px);
}

.gw-metrics-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.01em;
}

.gw-metrics-sub {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 16px auto 0 auto;
}

.gw-metric-circle {
  background: var(--surface);
  border-radius: 50%;
  width: 240px;
  height: 240px;
  margin: 0 auto;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
  animation: circleDraw 1.8s ease forwards;
  overflow: hidden;
}

.gw-metric-circle:hover {
  transform: translateY(-8px) rotate(1.5deg);
  box-shadow: 0 25px 45px rgba(40,60,120,0.15);
}

.gw-metric-word {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 14px;
}

.gw-metric-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
}

.gw-icon-corner {
  position: absolute;
  font-size: 1.3rem;
  color: var(--accent);
  opacity: 0.8;
  animation: cornerFloat 4s ease-in-out infinite;
}

.gw-corner-1 { top: 45px;
  left: 25px; }
.gw-corner-2 { bottom: 28px; right: 18px; }

@keyframes circleDraw {
  0% { border: 2px solid transparent; }
  100% { border: 2px solid var(--accent); }
}

@keyframes cornerFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
/**/
.gw-raume-section {
  position: relative;
  padding: 160px 0;
  background: #fcfcff;
  overflow: hidden;
}

.gw-raume-decor-1 {
  position: absolute;
  top: 12%; left: -8%;
  width: 260px; height: 260px;
  background: rgba(78,113,255,0.12);
  border-radius: 50%;
  filter: blur(55px);
}
.gw-raume-decor-2 {
  position: absolute;
  bottom: 12%; right: -8%;
  width: 300px; height: 300px;
  background: rgba(141,216,255,0.2);
  border-radius: 50%;
  filter: blur(65px);
}

.gw-raume-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--heading);
}
.gw-raume-sub {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 620px;
  margin: 16px auto 0 auto;
  line-height: 1.6;
}

.gw-raum-block {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  padding: 26px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}

.gw-raum-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(40,60,120,0.14);
}

.gw-raum-illu {
  flex-shrink: 0;
  width: 120px;
}
.gw-raum-img {
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(40,60,120,0.10);
}

.gw-raum-content {
  flex-grow: 1;
}

.gw-raum-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  animation: floatIcon 3s ease-in-out infinite;
}
.gw-icon {
  font-size: 1.6rem;
  color: #fff;
}

.gw-raum-title-small {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--heading);
}

.gw-raum-text {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 10px 0 14px;
}

.gw-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 24px;
  font-size: .85rem;
  font-weight: 500;
  background: rgba(78,113,255,0.12);
  color: var(--primary);
  animation: tagPop .6s ease;
}

@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes tagPop {
  0% { transform: scale(.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
/**/
.gw-voices-section {
  position: relative;
  padding: 160px 0;
  background: linear-gradient(to bottom, #f3f6ff, #eef1f9);
  overflow: hidden;
}

.gw-voices-bg-1, .gw-voices-bg-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.gw-voices-bg-1 {
  width: 350px; height: 350px;
  background: rgba(78,113,255,0.18);
  top: 12%; left: -6%;
}
.gw-voices-bg-2 {
  width: 420px; height: 420px;
  background: rgba(141,216,255,0.25);
  bottom: -18%; right: -10%;
}

.gw-voices-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--heading);
}
.gw-voices-sub {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 640px;
  margin: 10px auto 0;
}

.gw-voice-wrap {
  position: relative;
  padding: 60px 30px;
}

.gw-voice-front {
  background: var(--surface);
  border-radius: 34px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(30,40,90,0.12);
  position: relative;
  transform: translateZ(40px);
  transition: transform .35s ease, box-shadow .35s ease;
}
.gw-voice-front:hover {
  transform: translateY(-6px) translateZ(60px);
  box-shadow: 0 28px 70px rgba(30,40,90,0.16);
}

.gw-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color:#fff; font-size:1.8rem;
  animation: floatIcon 3.5s infinite ease-in-out;
}

.gw-voice-text {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 14px;
}
.gw-voice-person {
  text-align: center;
  font-weight: 600;
  color: var(--heading);
}

.gw-voice-back {
  position: absolute;
  width: 75%;
  height: 70%;
  background: rgba(255,255,255,0.35);
  top: 20%; left: 12%;
  border-radius: 40px;
  transform: translateZ(0);
  filter: blur(14px);
}

.gw-voice-dot {
  position: absolute;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  animation: floatSoft 6s infinite ease-in-out;
}
.dot-1 { width:18px; height:18px; top:14%; right:20%; }
.dot-2 { width:24px; height:24px; bottom:12%; left:8%; }

@keyframes floatIcon {
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
  100%{ transform: translateY(0); }
}
@keyframes floatSoft {
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
  100%{ transform: translateY(0); }
}

.swiper-pagination-bullet {
  background: var(--primary);
  opacity: .3;
}
.swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}
.gw-voice-front {
  background: var(--surface);
  border-radius: 34px;
  padding: 50px 34px 60px;
  position: relative;
  transform: translateZ(40px);
  transition: transform .35s ease;
  border: 1px solid var(--border);
}

.gw-voice-front:hover {
  transform: translateY(-6px) translateZ(60px);
}

.gw-photo-wrap {
  position: absolute;
  top: -28px;
  right: -18px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
  z-index: 5;
}

.gw-testi-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gw-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.gw-rating i {
  color: var(--primary);
}

.gw-voice-text {
  text-align: left;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 22px;
  min-height: 120px;
}

.gw-voice-person {
  font-weight: 600;
  color: var(--heading);
  text-align: left;
}

.gw-voice-back {
  position: absolute;
  width: 80%;
  height: 70%;
  background: rgba(255,255,255,0.28);
  top: 18%;
  left: 10%;
  border-radius: 40px;
  filter: blur(12px);
}

.gw-voice-dot {
  position: absolute;
  background: rgba(255,255,255,0.28);
  border-radius: 50%;
  animation: floatSoft 6s infinite ease-in-out;
}

.dot-1 { width:22px; height:22px; top:12%; right:18%; }
.dot-2 { width:28px; height:28px; bottom:10%; left:6%; }

@keyframes floatSoft {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
/**/
.gw-contact-section {
  padding: 160px 0;
  background: radial-gradient(circle at 30% 20%, #f5f8ff, #eef2ff);
  position: relative;
  overflow: hidden;
}

.gw-contact-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.gw-contact-sub {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 420px;
}

.gw-contact-form {
  background: var(--surface);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.gw-input-group {
  margin-bottom: 18px;
}

.gw-input {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1rem;
}

.gw-input.error {
  border-color: var(--danger);
}

.gw-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 14px;
}

.gw-submit-btn {
  width: 100%;
  padding: 14px 22px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 600;
  border: none;
  transition: .35s ease;
  margin-top: 10px;
}

.gw-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(60, 80, 180, 0.25);
}

.gw-right-block {
  position: relative;
  padding-left: 20px;
}

.gw-right-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.gw-right-sub {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 34px;
  max-width: 450px;
}

.gw-image-wrap {
  position: relative;
  z-index: 3;
}

.gw-contact-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gw-decor-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
}

.decor-1 {
  width: 260px;
  height: 260px;
  background: rgba(78,113,255,0.22);
  top: 20%;
  right: -10%;
}

.decor-2 {
  width: 320px;
  height: 320px;
  background: rgba(141,216,255,0.28);
  bottom: -8%;
  right: 0%;
}

@media (max-width: 768px) {
  .gw-contact-form {
    padding: 28px 22px;
  }
  .gw-right-block {
    padding-left: 0;
  }
  .gw-right-title {
    font-size: 1.5rem;
  }
  .gw-contact-title {
    font-size: 1.8rem;
  }
}
/**/
.gw-footer {
  position: relative;
  background: radial-gradient(circle at 20% 30%, #1d223a 0%, #101425 60%, #0b0e18 100%);
  padding-top: 110px;
  padding-bottom: 0;
  overflow: hidden;
  color: #fff;
}

.gw-footer-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: .35;
}
.decor-1 {
  width: 420px; height: 420px;
  background: rgba(78,113,255,0.16);
  top: 10%; left: -10%;
}
.decor-2 {
  width: 350px; height: 350px;
  background: rgba(141,216,255,0.18);
  bottom: -12%; right: -8%;
}

.gw-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.gw-footer-logo {
  width: 50px;
  height: 50px;
}
.gw-footer-brand {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.gw-footer-desc {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 330px;
}

.gw-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gw-footer-nav li {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.gw-footer-nav li i {
  font-size: 0.9rem;
  margin-right: 10px;
  color: var(--accent);
}
.gw-footer-nav a {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: .25s ease;
}
.gw-footer-nav a:hover {
  opacity: .7;
  transform: translateX(4px);
}

.gw-footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--accent);
}
.gw-footer-contact p {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}
.gw-footer-contact i {
  margin-right: 8px;
  color: var(--accent);
}

.gw-footer-legal {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}
.gw-footer-legal li {
  margin: 6px 0;
  display: flex;
  align-items: center;
}
.gw-footer-legal li i {
  font-size: 0.9rem;
  margin-right: 8px;
  color: var(--accent);
}
.gw-footer-legal a {
  color: rgba(255,255,255,0.9);
  transition: .25s ease;
}
.gw-footer-legal a:hover {
  opacity: .7;
}

.gw-footer-bottom {
  width: 100%;
  padding: 16px 0;
  background: rgba(0,0,0,0.28);
  margin-top: 40px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .gw-footer {
    padding-top: 80px;
  }
  .gw-footer-desc {
    text-align: left;
  }
}
/**/
.cookie-wrapper {
  position: fixed;
  bottom: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 520px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  z-index: 9999;
  opacity: 0;
  transition: all .5s ease;
}

.cookie-wrapper.show {
  bottom: 24px;
  opacity: 1;
}

.cookie-wrapper.hidden {
  display: none;
}

.cookie-content {
  text-align: center;
}

.cookie-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #fff;
  font-size: 1.6rem;
}

.cookie-title {
  font-size: 1.3rem;
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 22px;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cookie-button {
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: .3s ease;
  border: none;
}

.cookie-button.accept {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.cookie-button.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(80,100,200,0.25);
}

.cookie-button.decline {
  background: var(--bg-alt);
  color: var(--heading);
  border: 1px solid var(--border);
}

.cookie-button.decline:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 480px) {
  .cookie-wrapper {
    width: 92%;
    padding: 24px 18px;
  }
  .cookie-title {
    font-size: 1.15rem;
  }
  .cookie-text {
    font-size: 0.95rem;
  }
}
