/*--------------------------------------------------------------
# Root & General
--------------------------------------------------------------*/
:root {
  --c-primary: #fa0a08;
  --c-dark: #151515;
  --c-white: #fff;
  --c-text: #444444;
  --c-muted: #3b3b3b;
  --c-body: #e7e7e7;
  --overlay: rgba(0, 0, 0, .6);
  --shadow: 0 0 30px rgba(127, 137, 161, .25);
  --t-fast: .3s;
  --t-med: .4s;
  --radius: 4px;

  /* FAQ defaults (so vars are always defined) */
  --max: 1200px;
  --bg: var(--c-body);
  --card2: rgba(0, 0, 0, .06);
  --muted: var(--c-muted);
  --border: rgba(0, 0, 0, .12);
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--c-body);
  color: var(--c-text);
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--c-primary);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-med);
}

.back-to-top i {
  font-size: 28px;
  color: var(--c-dark);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--c-dark);
}

.back-to-top:hover i {
  color: var(--c-primary);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--c-dark);
}

#preloader:before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-30px, -0);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 6px solid var(--c-primary);
  border-top-color: var(--c-dark);
  border-bottom-color: var(--c-dark);
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Mobile AOS fix
--------------------------------------------------------------*/
@media (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  padding: 15px 0;
  transition: all .5s;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, .8);
}

#header .logo {
  font-size: 58px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: var(--c-white);
}

#header .logo a span {
  color: var(--c-primary);
}

#header .logo img {
  max-height: 58px;
}

/*--------------------------------------------------------------
# Get Started Button
--------------------------------------------------------------*/
.get-started-btn {
  display: inline-block;
  white-space: nowrap;
  font-size: 14px;
  padding: 7px 25px;
  border: 2px solid var(--c-primary);
  border-radius: var(--radius);
  color: var(--c-white);
  transition: background var(--t-fast), color var(--t-fast);
}

.get-started-btn:hover {
  background: var(--c-primary);
  color: #000;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  white-space: nowrap;
  transition: color var(--t-fast);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--c-primary);
}

/* Mobile */
.mobile-nav-toggle {
  color: var(--c-white);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: opacity .5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 999;
  background: rgba(0, 0, 0, .9);
  transition: opacity var(--t-fast);
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  overflow-y: auto;
  display: block;
  padding: 10px 0;
  background: var(--c-white);
  transition: all var(--t-fast);
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--c-dark);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--c-dark);
  background: var(--c-primary);
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center / cover no-repeat;
}

#hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }
}

/*--------------------------------------------------------------
# Hero Breathing Title
--------------------------------------------------------------*/
.uxvAurumHero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: .18;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}

.uxvAurumHero__orb--a {
  width: 380px;
  height: 380px;
  left: -120px;
  top: 10%;
  background: radial-gradient(circle at 30% 30%, var(--c-primary), rgba(25, 199, 255, 0) 60%);
  animation: uxvAurumHero__floatA 14s ease-in-out infinite;
}

.uxvAurumHero__orb--b {
  width: 460px;
  height: 460px;
  right: -160px;
  top: 34%;
  background: radial-gradient(circle at 35% 35%, var(--c-primary), rgba(124, 255, 122, 0) 62%);
  animation: uxvAurumHero__floatB 18s ease-in-out infinite;
}

.uxvAurumHero__orb--c {
  width: 520px;
  height: 520px;
  left: 18%;
  bottom: -220px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, .30), rgba(255, 255, 255, 0) 64%);
  animation: uxvAurumHero__floatC 20s ease-in-out infinite;
}

@keyframes uxvAurumHero__floatA {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, 14px, 0) scale(1.02);
  }
}

@keyframes uxvAurumHero__floatB {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-20px, -12px, 0) scale(1.015);
  }
}

@keyframes uxvAurumHero__floatC {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -16px, 0) scale(1.02);
  }
}

.uxvAurumHero__wrap {
  width: min(var(--uxvAurumHero__maxw), 100%);
  display: grid;
  gap: 14px;
  align-items: center;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.uxvAurumHero__headline {
  margin: 6px 0 0;
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: .92;
  font-size: clamp(70px, 12vw, 164px);
  color: rgba(255, 255, 255, .94);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, .55));
  position: relative;
  display: inline-block;
  user-select: none;
  transform: translateZ(0);
}

.uxvAurumHero__headlineText {
  display: inline-block;
  position: relative;
  padding: .02em .02em;
  transform: translateZ(0);
  will-change: opacity, filter;
  opacity: 1;
  filter: none;
  animation: uxvAurumHero__cleanIn 520ms cubic-bezier(.2, .9, .2, 1) 80ms both;
}

@keyframes uxvAurumHero__cleanIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 10px, 0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.uxvAurumHero__headlineText::after {
  content: "";
  position: absolute;
  inset: -6% -10%;
  pointer-events: none;
  background: linear-gradient(115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 38%,
      rgba(255, 255, 255, .35) 48%,
      rgba(25, 199, 255, .25) 54%,
      rgba(255, 255, 255, 0) 62%,
      rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-140%) skewX(-12deg);
  will-change: transform, opacity;
  animation: uxvAurumHero__textSweep 7.8s cubic-bezier(.2, .8, .2, 1) 1.1s infinite;
}

@keyframes uxvAurumHero__textSweep {
  0% {
    transform: translateX(-140%) skewX(-12deg);
    opacity: 0;
  }

  12% {
    opacity: .85;
  }

  22% {
    transform: translateX(140%) skewX(-12deg);
    opacity: 0;
  }

  100% {
    transform: translateX(140%) skewX(-12deg);
    opacity: 0;
  }
}

.uxvAurumHero__headline:hover .uxvAurumHero__headlineText::after {
  animation-duration: 5.6s;
}

.uxvAurumHero__sheen {
  position: absolute;
  inset: -18px -26px;
  pointer-events: none;
  background: linear-gradient(110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, .06) 18%,
      rgba(25, 199, 255, .10) 32%,
      rgba(255, 255, 255, .06) 46%,
      rgba(255, 255, 255, 0) 62%);
  mix-blend-mode: screen;
  transform: translateX(-160%) skewX(-12deg);
  will-change: transform, opacity;
  opacity: 0;
  animation: uxvAurumHero__sheenPass 12.5s cubic-bezier(.2, .8, .2, 1) infinite;
}

@keyframes uxvAurumHero__sheenPass {
  0% {
    transform: translateX(-160%) skewX(-12deg);
    opacity: 0;
  }

  8% {
    opacity: .75;
  }

  18% {
    transform: translateX(160%) skewX(-12deg);
    opacity: 0;
  }

  100% {
    transform: translateX(160%) skewX(-12deg);
    opacity: 0;
  }
}

.uxvAurumHero__subline {
  margin: 6px 0 4px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--c-body);
  font-size: clamp(16px, 2.3vw, 28px);
}

@media (prefers-reduced-motion: reduce) {

  .uxvAurumHero__orb,
  .uxvAurumHero__headlineText,
  .uxvAurumHero__headlineText::after,
  .uxvAurumHero__sheen {
    animation: none !important;
  }

  .uxvAurumHero__headlineText {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .uxvAurumHero__headlineText::after,
  .uxvAurumHero__sheen {
    opacity: 0 !important;
  }
}

@media (max-width: 640px) {
  .uxvAurumHero__orb--a {
    width: 200px;
    height: 200px;
    left: -90px;
    top: 6%;
  }

  .uxvAurumHero__orb--b {
    width: 240px;
    height: 240px;
    right: -110px;
    top: 28%;
  }

  .uxvAurumHero__orb--c {
    width: 300px;
    height: 300px;
    left: 8%;
    bottom: -180px;
  }

  .uxvAurumHero__headline {
    font-size: clamp(72px, 18vw, 110px);
    letter-spacing: .08em;
    line-height: .9;
  }

  .uxvAurumHero__sheen {
    inset: -22px -32px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
  border-radius: 20px;
}

.section-title h2 {
  margin: 0 0 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font: 500 14px/1 "Poppins", sans-serif;
  color: #cb6169;
}

.section-title h2::after {
  content: "";
  display: inline-block;
  width: 120px;
  height: 1px;
  background: var(--c-primary);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font: 700 36px/1 "Poppins", sans-serif;
  text-transform: uppercase;
  color: var(--c-dark);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font: 700 28px "Poppins", sans-serif;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Unsere Spezifikation (Image Grid)
--------------------------------------------------------------*/
.aioa-mapp-x9f3k-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
}

.aioa-mapp-x9f3k-deco {
  position: absolute;
  background: rgba(0, 0, 0, .8);
  z-index: 1;
}

.aioa-mapp-x9f3k-deco-top {
  top: 0;
  left: 22%;
  width: 290px;
  height: 880px;
}

.aioa-mapp-x9f3k-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
  margin-bottom: 40px;
}

.aioa-mapp-x9f3k-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.aioa-mapp-x9f3k-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(247, 85, 85, .3);
}

.aioa-mapp-x9f3k-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aioa-mapp-x9f3k-content {
  position: relative;
  z-index: 2;
  background: #ffffff;
  color: #1a1a1a;
  padding: 60px;
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-top: -180px;
}

.aioa-mapp-x9f3k-content-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.aioa-mapp-x9f3k-content-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 25px;
}

.aioa-mapp-x9f3k-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ff3838 0%, #f32929 100%);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.aioa-mapp-x9f3k-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(236, 38, 38, .4);
}

@media (max-width: 1200px) {
  .aioa-mapp-x9f3k-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .aioa-mapp-x9f3k-content {
    margin-top: 0;
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .aioa-mapp-x9f3k-grid {
    grid-template-columns: 1fr;
  }

  .aioa-mapp-x9f3k-content {
    padding: 40px 30px;
  }

  .aioa-mapp-x9f3k-content-title {
    font-size: 32px;
  }

  .aioa-mapp-x9f3k-card img {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# Services (icon boxes)
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: var(--c-white);
  border: 1px solid #ebebeb;
  border-radius: 80px;
  padding: 80px 20px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.services .icon-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
  background: var(--c-primary);
  border-radius: var(--radius);
  transition: transform var(--t-fast);
}

.services .icon-box .icon i {
  color: var(--c-dark);
  font-size: 28px;
  transition: transform var(--t-fast);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: var(--c-dark);
  transition: color var(--t-fast);
}

.services .icon-box h4 a:hover {
  color: #ff7900;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .icon-box:hover {
  border-color: var(--c-white);
  box-shadow: 0 0 25px rgba(0, 0, 0, .1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# CookieBanner
--------------------------------------------------------------*/
#cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

#cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 600px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .8);
  color: var(--c-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
  display: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

#cookie-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#cookie-banner p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

#cookie-banner a {
  color: var(--c-primary);
  text-decoration: none;
}

#cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: .9rem;
  border-radius: 5px;
  transition: background var(--t-fast);
}

.cookie-button.accept {
  background: var(--c-primary);
  color: var(--c-white);
}

.cookie-button.accept:hover {
  background: #e66c00;
}

.cookie-button.reject {
  background: transparent;
  color: var(--c-white);
  border: 1px solid var(--c-white);
}

.cookie-button.reject:hover {
  background: rgba(0, 0, 0, .05);
}

@media (max-width: 768px) {
  #cookie-banner {
    width: 90%;
    padding: 15px;
  }

  #cookie-banner h2 {
    font-size: 1.3rem;
  }

  #cookie-banner p {
    font-size: .9rem;
  }

  .cookie-button {
    font-size: .85rem;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px;
  color: var(--c-white);
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222;
  padding: 60px 0 30px;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font: 14px/24px "Raleway", sans-serif;
  color: var(--c-white);
  margin: 0;
}

#footer .footer-top .social-links a {
  display: inline-block;
  text-align: center;
  width: 36px;
  height: 36px;
  line-height: 1;
  margin-right: 4px;
  padding: 8px 0;
  font-size: 18px;
  border-radius: var(--radius);
  background: #292929;
  color: var(--c-white);
  transition: background var(--t-fast), color var(--t-fast);
}

#footer .footer-top .social-links a:hover {
  background: var(--c-primary);
  color: var(--c-dark);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-white);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--c-primary);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--c-white);
  line-height: 1;
  transition: color var(--t-fast);
  display: inline-block;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--c-primary);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--c-white);
}

/*--------------------------------------------------------------
# Info Gallery
--------------------------------------------------------------*/
#my-gallery {
  --gap: 1rem;
  --card-radius: 0.75rem;
  --shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  --transition: 0.4s ease;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

#my-gallery .card {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

#my-gallery .card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

#my-gallery .card img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  will-change: transform;
}

#my-gallery .card:hover img {
  transform: scale(1.1);
}

#my-gallery .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity var(--transition);
}

#my-gallery .card:hover .overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 20px;
}

.header {
  margin-bottom: 22px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-size: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-body);
  box-shadow: 0 0 0 4px var(--c-primary);
}

.wrap h2 {
  margin: 14px 0 6px;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.02em;
}

.sub {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 70ch;
}

.faq {
  margin-top: 26px;
  border: 50px solid var(--c-white);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow);
}

details {
  border-top: 1px solid var(--border);
  background: transparent;
}

details:first-child {
  border-top: 0;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

.qicon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  color: var(--c-primary);
  font-weight: 700;
  font-size: 14px;
}

.qtext {
  flex: 1 1 auto;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.chev {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--c-primary);
  border: 1px solid var(--border);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

details[open] summary {
  background: rgba(255, 255, 255, .04);
}

details[open] .chev {
  transform: rotate(180deg);
  background: rgba(0, 0, 0, .2);
  border-color: rgba(99, 102, 241, .25);
}

.answer {
  padding: 0 18px 18px 18px;
  color: var(--muted);
  max-width: 80ch;
  animation: fadeIn .16s ease;
}

.answer p {
  margin: 0;
}

.answer a {
  color: rgba(255, 255, 255, .92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta {
  margin-top: 18px;
  padding: 18px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .04));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta p {
  margin: 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(99, 102, 241, .35);
  background: var(--c-primary);
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  font-weight: 650;
  transition: transform .12s ease, background-color .12s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(99, 102, 241, .25);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f6f7fb;
    --card2: rgba(0, 0, 0, .06);
    --muted: rgba(10, 15, 25, .70);
    --border: rgba(10, 15, 25, .12);
    --shadow: 0 14px 40px rgba(0, 0, 0, .10);
  }

  body {
    background:
      radial-gradient(1200px 600px at 20% -10%, rgba(99, 102, 241, .18), transparent 60%),
      radial-gradient(900px 500px at 90% 0%, rgba(16, 185, 129, .14), transparent 55%),
      var(--bg);
  }

  .dot {
    background: rgba(99, 102, 241, .95);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, .14);
  }
}