:root {
  --header-height: clamp(96px, 11vw, 130px);
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(
    180deg,
    #0f0f2d 0%,
    #4d49de 38%,
    #f08ddf 76%,
    #cf86e1 86%,
    #1a3f8f 100%
  );
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

#bg-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

header, section, footer {
  position: relative;
  z-index: 1;
}

header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 48px;
  min-height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02))
    rgba(12, 14, 44, 0.65);
  backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  box-shadow: 0 14px 38px rgba(4, 6, 26, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 30;
  overflow: hidden;
  isolation: isolate;
}

header::before {
  content: "";
  position: absolute;
  inset: -18% -6% -20%;
  background:
    radial-gradient(circle at 18% 30%, rgba(0, 254, 212, 0.42), transparent 38%),
    radial-gradient(circle at 82% 55%, rgba(255, 144, 241, 0.35), transparent 40%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06) 55%, rgba(0, 254, 212, 0.2));
  opacity: 0.78;
  mix-blend-mode: screen;
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
  animation: glassFlow 16s ease-in-out infinite alternate;
}

header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 35%, rgba(255, 255, 255, 0.1) 70%);
  mix-blend-mode: overlay;
  opacity: 0.38;
  pointer-events: none;
  z-index: -1;
}

@keyframes glassFlow {
  0% {
    transform: translate3d(-6%, -3%, 0) scale(1);
  }
  50% {
    transform: translate3d(7%, 5%, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-5%, -3%, 0) scale(1);
  }
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* Left rail contains social icons (left) and nav-left (right) */
.left-rail {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #00fed4;
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: #ffdffb;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.social-icons a:focus-visible {
  outline: 2px solid #00fed4;
  outline-offset: 2px;
  background: rgba(0, 254, 212, 0.14);
}

.social-icons i {
  font-size: 1.1rem;
  line-height: 1;
}

.logo {
  height: 48px;
}

nav a {
  color: #00fed4;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.06rem;
  padding: 6px 0;
  position: relative;
  transition: color 0.25s ease, transform 0.2s ease, letter-spacing 0.2s ease;
}

/* Animated underline */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: width 0.2s ease;
  opacity: 0.9;
}

nav a:hover {
  color: #ffdffb;
  transform: translateY(-1px);
  letter-spacing: 0.01em;
}

nav a:hover::after {
  width: 100%;
}

nav a:focus-visible {
  outline: 2px solid #00fed4;
  outline-offset: 4px;
  border-radius: 8px;
  color: #ffdffb;
}

/* Split navigation layout */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.mobile-menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #00fed4;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-drawer {
  display: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  header {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 14px;
    padding: 18px 32px;
    width: 100%;
  }

  .left-rail {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo-area {
    transform: none;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  header {
    padding: 16px 24px;
    width: 100%;
    top: 0;
  }

  .social-icons {
    justify-content: center;
  }
}

.hero {
  min-height: 48vh;
  padding-top: calc(var(--header-height) + 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(87, 80, 246, 0.25) 0%, rgba(15, 15, 45, 0.0) 70%);
}

.hero h1,
.hero h2 {
  font-size: 3rem;
  background: linear-gradient(90deg, #00fed4, #fe90f1, #ffdffb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

section h2,
section h3 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #00fed4, #fe90f1, #ffdffb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #e5e5e5;
  max-width: 600px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  background: #00fed4;
  color: #0f0f2d;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn:hover {
  background: #5750f6;
  color: #fff;
}

.btn:focus-visible {
  outline: 2px solid #00fed4;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(0, 254, 212, 0.2);
}

.btn-outline {
  background: transparent;
  color: #00fed4;
  border: 1px solid rgba(0, 254, 212, 0.7);
  margin-left: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(0, 254, 212, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.consent-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: min(780px, calc(100% - 32px));
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04))
    rgba(12, 16, 50, 0.82);
  box-shadow: 0 16px 34px rgba(4, 6, 26, 0.52);
  backdrop-filter: blur(16px) saturate(160%);
  z-index: 60;
}

.consent-banner p {
  margin: 0;
  color: #f2f4ff;
  line-height: 1.4;
  font-size: 0.92rem;
}

.consent-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.consent-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.consent-note {
  margin-top: 10px;
  font-size: 0.85rem;
}

.consent-note a {
  color: #00fed4;
}

.badge-new {
  display: inline-block;
  background: linear-gradient(120deg, #ff4d5a, #ff8748);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(255, 77, 90, 0.3);
}

section {
  padding: 90px 6%;
  text-align: center;
}

/* Slightly tighter layout from intro to contact */
.intro,
.services,
.solutions,
.cases,
.about,
.careers,
.support {
  padding: 60px 6%;
}

section p + p {
  margin-top: 12px;
}

.text-section {
  text-align: center;
  padding: 28px 6%;
}

.text-section + .text-section {
  padding-top: 18px;
}

.text-card {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 30px;
  border-radius: 26px;
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(0, 254, 212, 0.08)) rgba(17, 18, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(5, 8, 30, 0.55);
  backdrop-filter: blur(18px);
}

.text-card--procurement {
  max-width: 1240px;
}

.procurement-image-wrap {
  max-width: 1040px;
  margin: 10px auto 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 32px rgba(6, 10, 36, 0.45);
}

.procurement-image {
  display: block;
  width: 100%;
  height: auto;
}

.procurement-caption {
  margin: 10px 14px 14px;
  color: #eaeaf9;
  font-weight: 500;
}

.text-card--procurement .text-card-body {
  margin-top: 22px;
}

.text-card--solutions {
  max-width: 1240px;
}

.solutions-body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.solutions-copy {
  flex: 1 1 460px;
}

.solutions-cta {
  display: table;
  margin: 20px auto 0;
  transform: translateX(-70px);
  font-size: 1.15rem;
  padding: 14px 30px;
}

.solutions-image-wrap {
  flex: 0 1 520px;
  margin: 0;
  position: relative;
  top: -42px;
  left: -86px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 32px rgba(6, 10, 36, 0.45);
}

.solutions-image {
  display: block;
  width: 100%;
  height: auto;
}

.text-card-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-tag {
  align-self: flex-start;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 254, 212, 0.15);
  color: #00fed4;
  border: 1px solid rgba(0, 254, 212, 0.4);
}

.text-lead {
  margin: 0;
  font-size: 1.1rem;
  color: #f6f6ff;
}

.text-card-body p {
  color: #eaeaf9;
}

.text-points {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.text-points li {
  position: relative;
  padding-left: 20px;
  color: #eaeaf9;
  font-weight: 600;
}

.text-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00fed4;
  box-shadow: 0 0 10px rgba(0, 254, 212, 0.6);
  transform: translateY(-50%);
}

.text-card .btn {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .text-card {
    padding: 24px;
  }

  .solutions-cta {
    transform: none;
  }

  .solutions-image-wrap {
    top: 0;
    left: 0;
    margin-top: 10px;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .solutions-image-wrap {
    top: -12px;
    left: -26px;
  }
}

@media (max-width: 600px) {
  .text-card {
    padding: 22px;
  }

  .text-tag {
    align-self: center;
  }
}

.services {
  background: transparent;
  color: inherit;
}

/* Profile section */
.profile {
  padding-top: 24px;
}

.profile-card {
  display: grid;
  grid-template-columns: 320px 1.3fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(0, 254, 212, 0.08)) rgba(17, 18, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 35px rgba(5, 8, 30, 0.5);
  backdrop-filter: blur(18px);
  text-align: left;
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  box-sizing: border-box;
}

.profile-info {
  order: 2;
}

.profile-photo {
  order: 1;
}

.profile-chat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 18px;
}

.chat-message {
  max-width: 86%;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(5, 8, 30, 0.35);
}

.chat-message p {
  margin: 0;
  color: #f6f6ff;
}

.chat-role {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 254, 212, 0.8);
}

.chat-message.ceo {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(0, 254, 212, 0.15), rgba(255, 255, 255, 0.04));
  border-color: rgba(0, 254, 212, 0.35);
}

.chat-message.customer {
  align-self: flex-start;
}

.chat-cta {
  margin-top: 8px;
}

.profile-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-photo.placeholder {
  background: rgba(255, 255, 255, 0.06);
}



.services-slider {
  max-width: 1280px;
  width: 100%;
  margin: 32px auto 0;
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 22px;
  padding: 6px 6px 12px;
  margin: 0 -6px;
  width: max-content;
  animation: sliderMarquee 42s linear infinite;
}

.slider-card {
  flex: 0 0 clamp(280px, 32vw, 410px);
  padding: 32px;
  border-radius: 24px;
  color: #f6f6ff;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(0, 254, 212, 0.08)
    )
    rgba(17, 18, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(12px);
  animation: sliderCardIn 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

.slider-card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slider-card h4 {
  margin: 0;
  font-size: 1.24rem;
  color: #00fed4;
}

.slider-card p {
  margin: 0;
  font-size: 1.07rem;
  line-height: 1.45;
  color: #eaeaf9;
}

@keyframes sliderCardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sliderCardFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes sliderMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .slider-card-inner {
    animation: sliderCardFloat 8s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slider-track {
    animation: none;
  }
  .slider-card,
  .slider-card-inner {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 700px) {
  .slider-track {
    gap: 16px;
  }
  .slider-card {
    flex-basis: clamp(260px, 80vw, 350px);
    padding: 26px;
  }
}

@media (max-width: 900px) {
  .profile-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .profile-photo {
    aspect-ratio: 3 / 4;
    height: auto;
  }
  .profile-info {
    text-align: center;
  }
  .profile-chat {
    align-items: center;
  }
  .chat-message {
    text-align: left;
  }
  .chat-message {
    max-width: 100%;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-box {
  padding: 30px;
  border-radius: 26px;
  transition: all 0.3s;
  color: #f6f6ff;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(0, 254, 212, 0.08)
    )
    rgba(17, 18, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 35px rgba(5, 8, 30, 0.5);
  backdrop-filter: blur(18px);
}

.service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(5, 8, 30, 0.6);
}

.service-box h4 {
  color: #00fed4;
}

.about {
  background: transparent;
  color: inherit;
}

.about-map-card {
  max-width: 1240px;
  margin: 28px auto 0;
  padding: 22px;
  border-radius: 24px;
  text-align: left;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(0, 254, 212, 0.08)
    )
    rgba(17, 18, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 35px rgba(5, 8, 30, 0.5);
  backdrop-filter: blur(18px);
}

.about-map-header h4 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #00fed4;
}

.about-map-header p {
  margin: 0 0 14px;
  color: #eaeaf9;
}

.about-map-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 12px 28px rgba(5, 8, 30, 0.45);
}

.about-map-embed iframe {
  width: 100%;
  height: clamp(260px, 38vw, 360px);
  border: 0;
  display: block;
  filter: grayscale(0.15) brightness(0.8) contrast(1.15) saturate(0.85);
}

.reviews-card {
  text-align: left;
}

.reviews-logo {
  display: block;
  width: min(100%, 260px);
  height: auto;
  margin-top: 14px;
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
}

.reviews-score {
  flex: 1 1 220px;
}

.reviews-rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.rating-value {
  font-size: 2.6rem;
  font-weight: 700;
  color: #00fed4;
}

.rating-max {
  font-size: 1rem;
  color: #eaeaf9;
}

.reviews-stars {
  display: flex;
  gap: 6px;
  margin: 10px 0 6px;
  color: #ffd36b;
  font-size: 1.1rem;
}

.reviews-stars span {
  display: inline-block;
  line-height: 1;
}

.reviews-meta {
  margin: 0;
  color: #eaeaf9;
}

.reviews-highlights {
  position: relative;
  flex: 1 1 460px;
  min-height: 260px;
  margin-top: -54px;
}

.review-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(210px, 22vw, 260px);
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #f6f6ff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  backdrop-filter: blur(3px);
  box-shadow: 0 10px 24px rgba(5, 10, 40, 0.26);
}

.review-pill::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 18px;
  bottom: -4px;
  background: inherit;
  border-right: inherit;
  border-bottom: inherit;
  transform: rotate(45deg);
}

.reviews-highlights .review-pill:nth-child(1) {
  top: 62%;
  left: 0%;
  transform: none;
}

.reviews-highlights .review-pill:nth-child(2) {
  top: 41%;
  left: 19%;
  transform: none;
}

.reviews-highlights .review-pill:nth-child(3) {
  top: 20%;
  left: 38%;
  transform: none;
}

.reviews-highlights .review-pill:nth-child(4) {
  top: 0%;
  left: 57%;
  transform: none;
}

.reviews-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-actions .btn-outline {
  margin-left: 0;
}

.footer {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02))
    rgba(12, 16, 50, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px 28px 0 0;
  backdrop-filter: blur(24px) saturate(165%);
  padding: 70px 6% 40px;
  margin-top: 60px;
  color: inherit;
  box-shadow: 0 18px 42px rgba(4, 6, 26, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  isolation: isolate;
}

.footer::before {
  content: "";
  position: absolute;
  inset: -20% -8% -22%;
  background:
    radial-gradient(circle at 16% 26%, rgba(0, 254, 212, 0.34), transparent 38%),
    radial-gradient(circle at 82% 52%, rgba(255, 144, 241, 0.35), transparent 42%),
    radial-gradient(circle at 55% 92%, rgba(56, 113, 255, 0.34), transparent 48%);
  opacity: 0.72;
  mix-blend-mode: screen;
  filter: blur(22px);
  pointer-events: none;
  z-index: -1;
  animation: glassFlow 18s ease-in-out infinite alternate;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02) 35%,
    rgba(255, 255, 255, 0.1) 72%
  );
  mix-blend-mode: overlay;
  opacity: 0.34;
  pointer-events: none;
  z-index: -1;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-pane {
  flex: 1 1 280px;
  min-width: 260px;
}

.contact-form-pane form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form-pane .form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-form-pane .form-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 160px;
  text-align: center;
}

.contact-form-pane .btn-outline {
  margin-left: 0;
}

.contact-form-pane label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: 22px;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.18),
      rgba(87, 80, 246, 0.15)
    )
    rgba(15, 15, 45, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 25px rgba(6, 5, 30, 0.35);
  backdrop-filter: blur(18px);
}

.contact-form-pane input[type="text"],
.contact-form-pane input[type="email"],
.contact-form-pane textarea {
  font-family: 'Outfit', sans-serif;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 10px 14px;
  font-size: 0.95rem;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  transition: border 0.2s, box-shadow 0.2s;
}

.contact-form-pane input[type="text"]::placeholder,
.contact-form-pane input[type="email"]::placeholder,
.contact-form-pane textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form-pane input[type="text"]:focus-visible,
.contact-form-pane input[type="email"]:focus-visible,
.contact-form-pane textarea:focus-visible {
  outline: none;
  border-color: #00fed4;
  box-shadow: 0 0 0 2px rgba(0, 254, 212, 0.25);
}

.contact-form-pane textarea {
  resize: vertical;
  min-height: 110px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-question {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.captcha-refresh {
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1rem;
}

.captcha-refresh:hover {
  background: rgba(255, 255, 255, 0.25);
}

.captcha-hint,
.captcha-success {
  font-size: 0.9rem;
  margin: 0;
}

.captcha-hint {
  color: #ff7f9f;
}

.captcha-success {
  color: #7fffd0;
}

.contact-form-pane .consent-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-form-pane .consent-row input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #00fed4;
  flex: 0 0 auto;
}

.contact-form-pane .consent-row span {
  color: #f6f6ff;
}

.footer a {
  color: #00fed4;
}

.footer .btn {
  color: #0f0f2d;
}

.footer .btn:hover {
  color: #fff;
}

.footer-email {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-email:hover {
  color: #ffdffb;
}

.impressum p {
  margin: 6px 0;
}

.footer-meta {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.footer-social {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  align-self: center;
  box-shadow: 0 8px 18px rgba(4, 6, 26, 0.35);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #00fed4;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social .social-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-social a:hover {
  color: #ffdffb;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.footer-social a:focus-visible {
  outline: 2px solid #00fed4;
  outline-offset: 2px;
  background: rgba(0, 254, 212, 0.14);
}

.impressum-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 30px) 6% 90px;
  color: #f6f6ff;
}

.impressum-card {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(0, 254, 212, 0.08)
    )
    rgba(17, 18, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 35px rgba(5, 8, 30, 0.5);
  backdrop-filter: blur(18px);
  text-align: left;
}

.impressum-card h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 2rem;
  background: linear-gradient(90deg, #00fed4, #fe90f1, #ffdffb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impressum-card h2 {
  margin: 22px 0 8px;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: #00fed4;
}

.impressum-card p {
  margin: 6px 0;
  color: #eaeaf9;
}

.impressum-card a {
  color: #00fed4;
}

@media (max-width: 820px) {
  :root {
    --header-height: clamp(84px, 16vw, 120px);
  }

  header {
    padding: 16px 20px;
    row-gap: 12px;
  }

  nav a {
    font-size: 0.98rem;
  }

  .hero h1,
  .hero h2 {
    font-size: 2.4rem;
  }

  section h2,
  section h3 {
    font-size: 1.9rem;
  }

  section {
    padding: 70px 8%;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 64px;
  }

  header {
    position: fixed;
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    min-height: var(--header-height);
  }

  header.header--compact {
    padding: 5px 10px;
    min-height: 52px;
  }

  .left-rail,
  .nav-right {
    display: none;
  }

  .logo-area {
    justify-content: flex-start;
  }

  .logo {
    height: 38px;
  }

  header.header--compact .logo {
    height: 32px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .mobile-drawer {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 29;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 14px;
    background: rgba(12, 14, 44, 0.95);
    backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  header.header--compact + .mobile-drawer {
    top: 52px;
  }

  .mobile-drawer a {
    color: #00fed4;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.96rem;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-menu-open .mobile-drawer {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 60vh;
    padding-top: calc(var(--header-height) + 12px);
  }

  .hero-content {
    width: min(100%, 36rem);
    padding: 0 4px;
  }

  .hero h1,
  .hero h2 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero .btn {
    width: auto;
    max-width: 320px;
    padding: 11px 22px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .btn-outline {
    margin-left: 0;
    margin-top: 8px;
  }

  section {
    padding: 60px 6%;
  }

  .footer {
    padding: 60px 6% 32px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-pane {
    min-width: 0;
  }

  .profile-card {
    padding: 20px;
    gap: 18px;
  }

  .profile-chat {
    align-items: stretch;
  }

  .chat-message {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .profile-photo {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  .profile-photo img {
    object-position: center top;
  }

  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .reviews-actions .btn {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    justify-content: center;
  }

  .review-pill {
    font-size: 0.92rem;
    width: auto;
    padding: 10px 16px;
  }

  .reviews-highlights {
    display: none;
  }

  .reviews-highlights .review-pill:nth-child(n) {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .reviews-logo {
    width: min(100%, 220px);
  }

  .captcha-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .impressum-page {
    padding: calc(var(--header-height) + 24px) 6% 70px;
  }

  .consent-banner {
    right: 10px;
    left: 10px;
    width: auto;
    bottom: 10px;
    padding: 14px;
  }

  .consent-actions .btn {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 72px;
  }

  header {
    padding: 12px 14px;
  }

  .logo {
    height: 42px;
  }

  nav a {
    font-size: 0.9rem;
  }

  .hero h1,
  .hero h2 {
    font-size: 1.9rem;
  }

  section h2,
  section h3 {
    font-size: 1.7rem;
  }

  .text-card {
    padding: 20px;
  }

  .profile-card {
    padding: 18px;
  }

  .profile-photo {
    max-width: 280px;
    aspect-ratio: 5 / 6;
  }

  .profile-info h3 {
    font-size: 1.55rem;
    margin-top: 6px;
  }
}
