/* --- VARIABLES --- */
:root {
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --text-main: #e0e0e0;
  --text-muted: #858585;
  --accent: #c4f934; /* Neon Lime */
  --accent-hover: #a3d920;
  --border-color: #333333;
  --grid-line: rgba(255, 255, 255, 0.1);

  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;

  --container-width: 1280px;
  --header-height: 80px;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html {
  scroll-behavior: smooth;
}

main {
  flex: 1;
  width: 100%;
}

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

ul {
  list-style: none;
}

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

/* --- UTILS --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.header__container {
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.header__logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #fff;
}

/* Nav Desktop */
.header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.header__link:hover {
  color: var(--accent);
}

.header__link:hover::after {
  width: 100%;
}

/* CTA Button in Header */
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.header__cta i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.header__cta:hover {
  background-color: var(--accent);
  color: var(--bg-dark);
}

.header__cta:hover i {
  transform: translate(2px, -2px);
}

/* Burger */
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.header__burger-line {
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding-top: 80px;
}

.footer__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

/* Grid Lines Effect */
.footer__col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: var(--grid-line);
}

.footer__logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

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

.footer__eu-notice {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.85rem;
  padding: 10px;
  border: 1px solid var(--border-color);
}

.footer__eu-notice i {
  width: 16px;
  height: 16px;
}

.footer__title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer__link:hover {
  color: #fff;
  padding-left: 5px;
  border-left: 2px solid var(--accent);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.95rem;
}

.footer__contact-item i {
  color: var(--accent);
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__status {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #fff;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.footer__bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- ADAPTIVE --- */
@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
  .footer__col:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__burger {
    display: flex;
    z-index: 1001;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .header__nav.active {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .header__link {
    font-size: 1.5rem;
  }

  /* Footer Mobile */
  .footer__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

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

/* Background Animation Layer */
.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

.hero__grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Content Styles */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  background: rgba(196, 249, 52, 0.05);
}

.hero__badge i {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 6rem); /* Responsive Huge Text */
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.text-highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

/* Glitch effect on hover for the keyword */
.text-highlight:hover {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--bg-dark);
  border: 1px solid var(--accent);
}

.btn--primary:hover {
  background-color: transparent;
  color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(196, 249, 52, 0.1);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.hero__info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #666;
}

.hero__info i {
  width: 14px;
  height: 14px;
}

/* Right Side Stats - Breaking the grid visually */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.stat-box {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-color);
  padding: 30px;
  width: 250px;
  position: relative;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateX(-10px);
  border-color: var(--accent);
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: var(--accent);
}

.stat-box__value {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-box__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Adaptive */
@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .hero__stats {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  .stat-box {
    width: 48%;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .hero__stats {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-box {
    width: 100%;
  }
}

/* --- FEATURES SECTION --- */
.section-padding {
  padding: 120px 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 60px;
}

.text-white {
  color: #fff;
}

/* Grid Layout */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 1px; /* The gap acts as the border */
  background-color: var(--border-color); /* Color of the internal borders */
  border: 1px solid var(--border-color); /* External border */
}

/* Feature Item Base */
.f-item {
  background-color: var(--bg-dark); /* Content background */
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 0.3s ease;
  overflow: hidden;
}

/* Hover Effect: Inner Neon Glow */
.f-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(196, 249, 52, 0.1),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.f-item:hover::after {
  opacity: 1;
}

.f-item:hover .f-item__icon {
  color: var(--accent);
  transform: scale(1.1);
}

.f-item__number {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.f-item__icon {
  width: 40px;
  height: 40px;
  color: #fff;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.f-item__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.f-item__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Grid Spans */
.f-item--large {
  grid-column: span 2;
}

.f-item--tall {
  grid-row: span 2;
}

.f-item--wide {
  grid-column: span 3;
  align-items: center;
  justify-content: center;
}

/* Special elements */
.f-item__sticker {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px; /* Minimal rounding */
}

.f-item__sticker i {
  width: 14px;
  height: 14px;
}

.f-item__content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
  z-index: 2;
}

.f-item__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.f-item__link-btn:hover {
  color: var(--accent);
}

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

  .f-item--large {
    grid-column: span 1;
  }

  .f-item--tall {
    grid-row: auto;
  }

  .f-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .f-item--wide {
    grid-column: span 1;
  }

  .f-item__content-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- STEPS SECTION --- */
.steps__wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Vertical Line */
.steps__line {
  position: absolute;
  left: 29px; /* Aligned with markers */
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent) 0%,
    rgba(196, 249, 52, 0.1) 100%
  );
  z-index: 0;
}

/* Individual Step */
.step-item {
  position: relative;
  padding-left: 100px; /* Space for number and marker */
  margin-bottom: 80px;
}

.step-item:last-child {
  margin-bottom: 0;
}

/* Marker Dot */
.step-item__marker {
  position: absolute;
  left: 20px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--bg-dark);
  border: 2px solid var(--accent);
  z-index: 2;
  transform: rotate(45deg); /* Diamond shape */
  transition: background-color 0.3s ease;
}

.step-item:hover .step-item__marker {
  background-color: var(--accent);
}

/* Huge Background Number */
.step-item__number {
  position: absolute;
  left: -20px;
  top: -40px;
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  z-index: 1;
  line-height: 1;
  pointer-events: none;
}

/* Content */
.step-item__content {
  position: relative;
  z-index: 3;
  background: rgba(20, 20, 20, 0.6);
  border-left: 1px solid var(--border-color);
  padding: 30px;
  backdrop-filter: blur(5px);
}

.step-item__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.step-item__desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.step-item__desc strong {
  color: #fff;
  font-weight: 400;
  border-bottom: 1px dashed var(--accent);
}

/* Decorative Status Line */
.step-item__status {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--accent);
  opacity: 0.8;
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.step-item__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  padding: 5px 10px;
  border: 1px solid #333;
  font-size: 0.8rem;
  color: #aaa;
}

.step-item__tag i {
  width: 14px;
  height: 14px;
}

.step-btn {
  padding: 12px 28px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .steps__line {
    left: 19px;
  }

  .step-item {
    padding-left: 60px;
    margin-bottom: 60px;
  }

  .step-item__marker {
    left: 10px;
  }

  .step-item__number {
    font-size: 5rem;
    left: 10px;
    top: -20px;
  }
}

/* --- CONTACT SECTION --- */
.contact {
  background-color: #080808;
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.contact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(196, 249, 52, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Info Column */
.contact__desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact__benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.contact__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1rem;
}

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

.contact__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Form Column */
.contact__form-wrapper {
  background: #111;
  padding: 40px;
  border: 1px solid var(--border-color);
  position: relative;
}

/* Form Groups (Floating Label) */
.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 12px 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-input:not(:placeholder-shown) {
  border-bottom-color: var(--accent);
}

.form-label {
  position: absolute;
  top: 12px;
  left: 0;
  color: #888;
  pointer-events: none;
  transition: 0.3s ease;
  font-size: 1rem;
}

/* Move label up on focus or if text exists */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -12px;
  font-size: 0.8rem;
  color: var(--accent);
}

.error-msg {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #ff4d4d;
  font-size: 0.75rem;
  opacity: 0;
  transition: 0.3s;
}

.form-group.error .form-input {
  border-bottom-color: #ff4d4d;
}

.form-group.error .error-msg {
  opacity: 1;
}

/* Custom Captcha */
.form-captcha {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  width: 100%;
  max-width: 300px;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

#captchaCheck {
  display: none; /* Hide real checkbox */
}

.captcha-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #ccc;
}

.captcha-mark {
  width: 24px;
  height: 24px;
  border: 2px solid #555;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: 0.3s;
}

#captchaCheck:checked + .captcha-label .captcha-mark {
  border-color: var(--accent);
}

#captchaCheck:checked + .captcha-label .captcha-mark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid green; /* Green checkmark */
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

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

.captcha-logo i {
  width: 16px;
  height: 16px;
  margin-bottom: 2px;
}

/* Agreement Checkbox */
.form-agreement {
  margin-bottom: 30px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #888;
}

.checkbox-container input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.checkbox-container input:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.agreement-text a {
  color: var(--accent);
  text-decoration: underline;
}

.form-btn {
  width: 100%;
}

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

.form-success.visible {
  opacity: 1;
  pointer-events: all;
}

.form-success i {
  width: 60px;
  height: 60px;
  color: var(--accent);
  margin-bottom: 20px;
}

.form-success h3 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

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

/* --- TICKER STRIP --- */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: var(--accent);
  padding: 12px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 5;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

.ticker__item {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--bg-dark);
  font-size: 1rem;
  padding: 0 30px;
  text-transform: uppercase;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- FAQ SECTION --- */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.faq__decor {
  margin-top: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  animation: rotate 10s linear infinite;
}

.faq__decor i {
  margin-bottom: 5px;
  color: var(--accent);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Accordion Styles */
.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-item__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.faq-item__icon {
  color: var(--accent);
  transition: transform 0.3s ease;
}

/* Hover State */
.faq-item__trigger:hover .faq-item__title {
  color: var(--accent);
}

/* Active State */
.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg); /* Plus becomes Cross */
}

.faq-item__trigger[aria-expanded="true"] .faq-item__title {
  color: var(--accent);
}

/* Content Animation */
.faq-item__content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__inner {
  padding-bottom: 25px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  padding-right: 40px;
}

/* Mobile */
@media (max-width: 992px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq__decor {
    display: none;
  }
}

/* --- COOKIE POPUP --- */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 400px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent);
  padding: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(150%); /* Hidden by default */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-popup__content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-popup__content i {
  color: var(--accent);
  flex-shrink: 0;
}

.cookie-popup__content a {
  color: #fff;
  text-decoration: underline;
}

.cookie-popup__btn {
  align-self: flex-end;
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  padding: 8px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.85rem;
  transition: 0.3s;
}

.cookie-popup__btn:hover {
  background: #fff;
}

/* --- POLICY PAGES STYLING (privacy.html etc.) --- */
/* Цей блок стилізує структуру <main><section class="pages">... */

.pages {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.pages .container {
  max-width: 800px; /* Reading mode width */
}

.pages h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  margin-bottom: 40px;
  text-transform: uppercase;
  line-height: 1.1;
}

.pages h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 3px solid var(--accent);
}

.pages p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pages ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.pages li {
  color: #ccc;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.pages li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pages a {
  color: var(--accent);
  border-bottom: 1px dashed var(--accent);
}

.pages a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
