/* --- VARIABLES & SETUP --- */
:root {
  --font-main: "Outfit", sans-serif;
  --font-display: "Space Grotesk", sans-serif;

  --c-bg: #05040a;
  --c-text-main: #e2e2e5;
  --c-text-muted: #9ca3af;
  --c-accent: #a78bfa;

  /* Holographic Gradients */
  --grad-aurora: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
  --grad-glass: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );

  --radius-sm: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --header-height: 80px;
  --container-width: 1240px;
  --gap-container: 2rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--c-bg);
  color: var(--c-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gap-container);
}

/* --- BACKGROUND FX --- */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 10s infinite alternate;
}

.aurora-blob--1 {
  width: 600px;
  height: 600px;
  background: #4c1d95;
  top: -100px;
  left: -100px;
}

.aurora-blob--2 {
  width: 500px;
  height: 500px;
  background: #be185d;
  bottom: -100px;
  right: -100px;
  animation-delay: -5s;
}

.aurora-blob--3 {
  width: 400px;
  height: 400px;
  background: #0ea5e9;
  top: 40%;
  left: 40%;
  filter: blur(100px);
  opacity: 0.2;
  animation-duration: 15s;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 50px);
  }
}

/* --- COMPONENTS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn--glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(255, 255, 255, 0.15);
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
}

.header.scrolled {
  background: rgba(5, 4, 10, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.header__logo-icon svg {
  width: 32px;
  height: 32px;
}

.header__nav {
  display: none;
}

.header__menu {
  display: flex;
  gap: 2rem;
}

.header__link {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  font-weight: 400;
  position: relative;
}

.header__link:hover {
  color: #fff;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--grad-aurora);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.header__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
}

.burger-line {
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #05040a;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-text-muted);
}

.mobile-menu__link:hover {
  color: #fff;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- FOOTER --- */
.footer {
  background: #0f0c1a;
  position: relative;
  padding-bottom: 3rem;
  margin-top: auto; /* Push to bottom if content is short */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__wave svg {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(-2px); /* Fix pixel gap */
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 2rem;
}

.footer__col--brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  display: block;
}

.footer__desc {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__socials a {
  color: #fff;
  opacity: 0.7;
}

.footer__socials a:hover {
  opacity: 1;
  color: var(--c-accent);
}

.footer__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer__list li,
.footer__contacts li {
  margin-bottom: 0.75rem;
}

.footer__list a {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

.footer__list a:hover {
  color: var(--c-accent);
  padding-left: 5px;
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

.footer__contacts i {
  width: 18px;
  height: 18px;
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #555;
  font-size: 0.8rem;
}

/* --- MEDIA QUERIES --- */
@media (min-width: 992px) {
  .header__nav {
    display: block;
  }
  .header__burger {
    display: none;
  }

  .footer__container {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }

  .mobile-menu {
    display: none;
  }
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: var(--c-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(167, 139, 250, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(167, 139, 250, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0);
  }
}

/* Typography */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block; /* Fix for gradient on some browsers */
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--c-text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero__desc strong {
  color: #fff;
  font-weight: 500;
}

/* Buttons & Actions */
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.btn--primary {
  background: #fff;
  color: #000;
  border: none;
}

.btn--glow:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px) scale(1.02);
}

.hero__note {
  font-size: 0.75rem;
  color: #666;
  font-style: italic;
}

/* Visual - Glass Card & Blobs */
.hero__visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px; /* For 3D Tilt Effect */
}

.glass-card {
  position: relative;
  width: 380px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  z-index: 2;
  transform-style: preserve-3d;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.1s ease-out; /* Smooth JS tilt */
}

.glass-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.glass-dots {
  display: flex;
  gap: 6px;
}

.glass-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.glass-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--c-accent);
}

.stat-row {
  margin-bottom: 1.5rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 0.5rem;
}

.stat-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: var(--grad-aurora);
  border-radius: 10px;
}

.big-stat {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.big-stat__val {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-display);
  background: linear-gradient(to right, #fff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.big-stat__label {
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

/* Floating Shapes (Fluid Geometry) */
.floating-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.6;
  filter: blur(40px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: #4c1d95;
  top: 50px;
  right: -20px;
  border-radius: 64% 36% 27% 73% / 55% 56% 44% 45%;
  animation: morph 8s ease-in-out infinite;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: #db2777;
  bottom: 20px;
  left: -20px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite reverse;
}

@keyframes morph {
  0% {
    border-radius: 64% 36% 27% 73% / 55% 56% 44% 45%;
  }
  50% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  100% {
    border-radius: 64% 36% 27% 73% / 55% 56% 44% 45%;
  }
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 6px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero__actions {
    align-items: center;
  }

  .hero__visual {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .glass-card {
    width: 100%;
    max-width: 340px;
  }
}

/* --- GLOBAL SECTION STYLES --- */
.section-pad {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.section-subtitle {
  color: var(--c-text-muted);
  font-size: 1.1rem;
}

.section-subtitle strong {
  color: var(--c-text-main);
}

/* --- STRATEGIES LIST --- */
.strategies__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.strat-item {
  display: flex;
  align-items: center;
  gap: 4rem;
  opacity: 0; /* JS Animation initial state */
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Класс активации для JS */
.strat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.strat-item--reverse {
  flex-direction: row-reverse;
}

/* Visual Part */
.strat-item__visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.strat-blob {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
}

.blob-1 {
  background: #4c1d95;
  animation: pulse 4s infinite alternate;
}
.blob-2 {
  background: #059669;
  animation: pulse 5s infinite alternate-reverse;
}
.blob-3 {
  background: #be185d;
  animation: pulse 4.5s infinite alternate;
}

.strat-card-glass {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.strat-item:hover .strat-card-glass {
  transform: rotate(0deg) scale(1.05);
  border-color: var(--c-accent);
}

.strat-icon {
  width: 64px;
  height: 64px;
  color: #fff;
  stroke-width: 1.5;
}

.strat-num {
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

/* Content Part */
.strat-item__content {
  flex: 1;
}

.strat-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.strat-desc {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.strat-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.strat-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e2e2e5;
  font-weight: 500;
}

.strat-features i {
  color: var(--c-accent);
  width: 20px;
  height: 20px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-accent);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}

.btn-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--c-accent);
  transition: width 0.3s ease;
}

.btn-link:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .strat-item,
  .strat-item--reverse {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .strat-features {
    align-items: center;
  }

  .strat-card-glass {
    transform: rotate(0);
  }
}

/* --- INNOVATION SECTION --- */
.innovation {
  background-color: #080612; /* Чуть темнее основного фона для контраста */
  overflow: hidden;
}

.innovation-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(167, 139, 250, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.innovation__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Holographic Card Styles */
.holo-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  padding: 1px; /* Space for the gradient border */
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Gradient Border Effect via pseudo-element */
.holo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.holo-card__inner {
  background: #0b0915;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

/* Hover Effects */
.holo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(167, 139, 250, 0.3);
}

.holo-card:hover::before {
  background: var(--grad-aurora); /* Рамка стає кольоровою при наведенні */
}

.holo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.holo-card:hover .holo-icon {
  background: var(--c-accent);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.holo-icon i {
  width: 24px;
  height: 24px;
}

.holo-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
}

.holo-desc {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.holo-desc strong {
  color: #e2e2e5;
}

/* --- EXPERTISE SECTION --- */
.expertise__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Accordion Styling */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(167, 139, 250, 0.3);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.1);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
}

.acc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.acc-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-accent);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

/* Rotate icon when active */
.accordion-item.active .acc-icon {
  transform: rotate(45deg);
  background: var(--c-accent);
  color: #fff;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.acc-inner strong {
  color: #e2e2e5;
}

/* Sidebar CTA Card */
.expertise__sidebar {
  position: sticky;
  top: 120px; /* Offset for fixed header */
}

.cta-card {
  position: relative;
  padding: 2.5rem;
  background: #0b0915;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  text-align: center;
}

.cta-card__blob {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: var(--c-accent);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.cta-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-desc {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.btn--full {
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .expertise__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .expertise__sidebar {
    position: static;
    order: -1; /* Покажем CTA сверху на мобильных, или убери order, чтобы было снизу */
    order: 1;
  }
}

/* --- SOLUTIONS SECTION --- */
.solutions__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.solutions__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.btn-text:hover {
  color: var(--c-accent);
}

/* Trust Indicators */
.solutions__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--c-bg);
  background-color: #333;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

/* --- ACCESS CARD (Visual) --- */
.solutions__visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.access-card-wrap {
  position: relative;
  width: 400px;
  height: 250px;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotateX(0) rotateY(0);
  }
  50% {
    transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
  }
}

.access-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Holographic Shine Effect */
.card-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    125deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 45%,
    rgba(255, 255, 255, 0) 50%,
    transparent 100%
  );
  background-size: 200% 200%;
  animation: shine 4s infinite linear;
  pointer-events: none;
}

@keyframes shine {
  0% {
    background-position: 200% 200%;
  }
  100% {
    background-position: -200% -200%;
  }
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
}

.card-chip {
  width: 50px;
  height: 35px;
  background: linear-gradient(135deg, #e2c08d 0%, #bf953f 100%);
  border-radius: 6px;
  position: relative;
  margin-top: 1rem;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.card-number {
  font-family: "Space Grotesk", monospace; /* Monospace vibe */
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 1.5rem 0;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.card-holder strong {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.card-status {
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
}

.card-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: var(--grad-aurora);
  filter: blur(80px);
  opacity: 0.3;
  z-index: 1;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
  .solutions__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .solutions__actions {
    justify-content: center;
  }

  .solutions__trust {
    justify-content: center;
  }

  .access-card-wrap {
    width: 100%;
    max-width: 340px;
    height: 220px;
  }

  .card-number {
    font-size: 1.2rem;
  }
}

/* --- CONTACT SECTION --- */
.contact {
  padding-bottom: 8rem;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info */
.contact__details {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-text span {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-text a,
.detail-text address {
  font-size: 1.1rem;
  color: #fff;
  font-style: normal;
  font-weight: 500;
}

/* --- FORM STYLES --- */
.contact__form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #666;
  transition: color 0.3s ease;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1rem 1rem 1rem 3rem; /* space for icon */
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--c-accent);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.1);
}

.form-input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
  color: var(--c-accent);
}

/* Error State */
.form-group.error .form-input {
  border-color: #ef4444;
}

.error-msg {
  display: none;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.form-group.error .error-msg,
.fake-captcha.error + .captcha-error {
  display: block;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.form-check a {
  color: var(--c-accent);
  text-decoration: underline;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
}

/* FAKE CAPTCHA */
.fake-captcha {
  background: #f9f9f9; /* Light bg like real captcha */
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  min-width: 280px;
  margin-bottom: 2rem;
  color: #333; /* Dark text for contrast on light bg */
}

.fake-captcha.error {
  border: 1px solid #ef4444;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.captcha-check {
  position: relative;
  width: 28px;
  height: 28px;
}

.captcha-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.captcha-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: #fff;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.captcha-check input:checked + .captcha-label {
  border-color: transparent;
}

.captcha-check input:checked + .captcha-label::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid #4caf50;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.captcha-text {
  font-weight: 500;
  font-size: 0.9rem;
}

.captcha-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.6rem;
  color: #999;
  gap: 2px;
}

.captcha-logo i {
  width: 24px;
  height: 24px;
  color: #555;
}

/* Button Loader */
.loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn--submit.loading .btn-text-content {
  display: none;
}

.btn--submit.loading .loader {
  display: inline-block;
}

/* Success Message */
.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0915;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.form-success.active {
  opacity: 1;
  visibility: visible;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact__container {
    grid-template-columns: 1fr;
  }
}

/* --- COOKIE POPUP --- */
.cookie-popup {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px); /* Скрыт внизу */
  width: 90%;
  max-width: 600px;
  background: rgba(11, 9, 21, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cookie-popup.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-content p {
  font-size: 0.9rem;
  color: #e2e2e5;
  margin: 0;
}

.cookie-content a {
  color: var(--c-accent);
  text-decoration: underline;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* --- POLICY PAGES STYLING --- */
/* Эти стили сработают для privacy.html, terms.html и т.д. */
.pages {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6rem;
  min-height: 80vh;
}

.pages h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 2rem;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pages h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--c-accent);
  padding-left: 1rem;
}

.pages p {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  max-width: 800px;
}

.pages ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--c-text-muted);
}

.pages li {
  margin-bottom: 0.5rem;
}

.pages strong {
  color: #fff;
}

.pages a {
  color: var(--c-accent);
  text-decoration: underline;
  transition: color 0.2s;
}

.pages a:hover {
  color: #fff;
}

/* Адаптив для попапа */
@media (max-width: 600px) {
  .cookie-popup {
    flex-direction: column;
    text-align: center;
    bottom: 1rem;
  }
}
