/* --- VARIABLES & RESET --- */
:root {
  --bg-dark: #05050a;
  --bg-card: #0e0e16;
  --text-main: #e0e0e0;
  --text-muted: #8a8a9b;

  --neon-cyan: #00f3ff;
  --neon-purple: #bc13fe;

  --font-heading: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;

  --gap-container: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: #fff;
}

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

ul {
  list-style: none;
}

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

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

.text-accent {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* --- BUTTONS (TECH CUT STYLE) --- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--neon-cyan);
  border: none;
  cursor: pointer;
  position: relative;
  /* Cut corners styling */
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--neon-purple);
  color: #fff;
  box-shadow: 0 0 15px var(--neon-purple);
  transform: translateY(-2px);
}

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

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
}

.header__logo-img {
  width: 40px;
  height: 40px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__list {
  display: flex;
  gap: 30px;
}

.header__link {
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: width 0.3s;
}

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

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

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

.header__burger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--neon-cyan);
  transition: 0.3s;
}

/* --- FOOTER --- */
.footer {
  background-color: #020204;
  border-top: 1px solid rgba(0, 243, 255, 0.1);
  padding-top: 60px;
  margin-top: auto; /* Push to bottom if content is short */
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}

.footer__desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 300px;
}

.footer__title {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  padding-left: 15px;
}

.footer__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: var(--neon-purple);
}

.footer__list li {
  margin-bottom: 12px;
}

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

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.footer__contacts i {
  color: var(--neon-cyan);
  min-width: 24px;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .header__burger {
    display: flex;
    z-index: 1001;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(5, 5, 10, 0.98);
    border-left: 1px solid var(--neon-cyan);
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease;
    z-index: 1000;
    backdrop-filter: blur(15px);
  }

  .header__nav.active {
    right: 0;
  }

  .header__list {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .header__logo-text {
    font-size: 1.2rem;
  }
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  padding-top: 80px; /* Space for fixed header */
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    var(--bg-dark) 90%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* Content Side */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

.hero__badge-icon {
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulse 1.5s infinite;
}

.hero__title {
  font-size: 4.5rem; /* Huge typography */
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 900;
  letter-spacing: -1px;
}

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

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.hero__link-more {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.hero__link-more:hover {
  color: var(--neon-cyan);
  gap: 10px; /* Slight movement on hover */
}

/* Stats */
.hero__stats {
  display: flex;
  gap: 50px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Visual Side (HUD Frame) */
.hero__visual {
  position: relative;
}

.hero__frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 14, 22, 0.5);
  /* Tech Cut Shape */
  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );
}

.hero__img {
  width: 100%;
  height: auto;
  opacity: 0.8;
  filter: grayscale(20%) contrast(120%);
  mix-blend-mode: luminosity;
}

/* HUD Decorations */
.hud-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--neon-cyan);
  transition: 0.3s;
}

.top-left {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.bottom-right {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.hero__frame:hover .hud-corner {
  width: 50px;
  height: 50px;
  box-shadow: 0 0 15px var(--neon-cyan);
}

/* Animations */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    margin: 0 auto 40px auto;
    border-left: none;
    border-bottom: 2px solid var(--neon-purple);
    padding-bottom: 10px;
    padding-left: 0;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

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

  .hero__actions {
    flex-direction: column;
  }
}

/* --- GLOBAL SECTION STYLES --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- POSSIBILITIES GRID --- */
.possibilities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* --- TECH CARD (SCI-FI STYLE) --- */
.tech-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);

  /* Double cut corner shape */
  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );
}

/* Decorative corner lines using pseudo-elements */
.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--neon-cyan);
  border-left: 2px solid var(--neon-cyan);
  opacity: 0.5;
  transition: 0.3s;
}

.tech-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--neon-cyan);
  border-right: 2px solid var(--neon-cyan);
  opacity: 0.5;
  transition: 0.3s;
}

/* Hover Effects */
.tech-card:hover {
  background: rgba(0, 243, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(0, 243, 255, 0.15);
}

.tech-card:hover::before,
.tech-card:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  border-color: var(--neon-cyan);
}

/* Icon Styling */
.tech-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  /* Hexagon-like clip */
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  color: var(--neon-cyan);
  transition: 0.3s;
}

.tech-card__icon i {
  width: 28px;
  height: 28px;
}

.tech-card:hover .tech-card__icon {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  transform: rotate(180deg);
}

.tech-card:hover .tech-card__icon i {
  transform: rotate(-180deg); /* Keep icon upright */
}

.tech-card__title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.tech-card__text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

/* --- TOOLS / PROCESS SECTION --- */
.tools {
  background: linear-gradient(
    180deg,
    var(--bg-dark) 0%,
    #0a0a12 50%,
    var(--bg-dark) 100%
  );
}

.process-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 80px;
  margin-bottom: 60px;
}

/* Neon Connecting Line */
.process-line {
  position: absolute;
  top: 25px; /* Aligns with the markers */
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

/* Animated Pulse in the line */
.process-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-purple),
    transparent
  );
  animation: lineRun 3s infinite linear;
}

@keyframes lineRun {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}

.process-step {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 15px;
  text-align: center;
}

/* Circular Marker */
.step-marker {
  width: 50px;
  height: 50px;
  background: var(--bg-dark);
  border: 2px solid var(--neon-cyan);
  border-radius: 50%; /* Keeping markers round for contrast with angular cards */
  color: var(--neon-cyan);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
  transition: 0.3s;
}

.process-step:hover .step-marker {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  transform: scale(1.1);
}

/* Card Style */
.step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  transition: 0.3s;
  /* Trapezoid shape */
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
}

.process-step:hover .step-card {
  border-color: var(--neon-purple);
  background: rgba(188, 19, 254, 0.05);
}

.step-icon {
  color: #fff;
  margin-bottom: 15px;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tools-cta {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Process */
@media (max-width: 992px) {
  .process-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .process-line {
    width: 4px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .process-line::after {
    width: 100%;
    height: 30%;
    top: 0;
    left: 0;
    background: linear-gradient(
      180deg,
      transparent,
      var(--neon-purple),
      transparent
    );
    animation: lineRunVert 3s infinite linear;
  }

  @keyframes lineRunVert {
    0% {
      top: -30%;
    }
    100% {
      top: 100%;
    }
  }

  .process-step {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-marker {
    margin-bottom: 20px;
  }
}

/* --- GUIDE & FAQ SECTION --- */
.guide {
  position: relative;
  /* Background grid pattern */
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

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

.guide__desc {
  margin: 0 0 40px 0;
  text-align: left;
}

.guide__subtitle {
  font-size: 1.8rem;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--neon-purple);
  display: inline-block;
  padding-bottom: 5px;
}

/* --- TERMINAL WIDGET --- */
.guide__terminal {
  background: #000;
  border: 1px solid var(--text-muted);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  font-family: "Courier New", monospace; /* Monospace for terminal feel */
}

.terminal-header {
  background: #1a1a24;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #333;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.red {
  background: #ff5f56;
}
.yellow {
  background: #ffbd2e;
}
.green {
  background: #27c93f;
}

.terminal-title {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.terminal-body {
  padding: 25px;
}

.code-line {
  color: var(--neon-cyan);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.terminal-text {
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.6;
}

.terminal-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* --- FAQ ACCORDION --- */
.faq-item {
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--neon-cyan);
  background: rgba(0, 243, 255, 0.02);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-trigger span {
  padding-right: 20px;
}

.faq-icon {
  color: var(--neon-cyan);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-inner {
  padding: 0 20px 20px 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

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

  .guide__info {
    margin-bottom: 20px;
  }
}

.contact {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact__container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.contact__form-wrapper {
  width: 100%;
  max-width: 600px;
  background: rgba(14, 14, 22, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
  position: relative;
  /* Tech Cut Corners */
  clip-path: polygon(
    30px 0,
    100% 0,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    0 100%,
    0 30px
  );
}

.contact__header {
  text-align: center;
  margin-bottom: 40px;
}

/* --- INPUT STYLES (Floating Label) --- */
.input-group {
  position: relative;
  margin-bottom: 30px;
}

.contact__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.contact__label {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
  transition: 0.3s ease all;
}

.contact__input:focus ~ .contact__label,
.contact__input:not(:placeholder-shown) ~ .contact__label {
  top: -10px;
  font-size: 0.85rem;
  color: var(--neon-cyan);
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: 0.4s;
}

.contact__input:focus ~ .input-border {
  width: 100%;
}

.contact__input:not(:placeholder-shown):valid {
  border-bottom-color: var(--neon-purple);
}

.form-checkbox-group {
  margin-bottom: 20px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 22px;
  width: 22px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transition: 0.3s;
}

.captcha-box {
  border-radius: 4px;
}

.custom-checkbox:hover input ~ .checkmark {
  border-color: var(--neon-cyan);
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid var(--bg-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

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

.checkbox-text a {
  color: var(--neon-cyan);
  text-decoration: underline;
}

.contact__submit {
  width: 100%;
  margin-top: 20px;
}

.contact__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #333;
  color: #888;
  box-shadow: none;
}

.contact__success {
  display: none;
  text-align: center;
  padding: 40px 0;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  font-size: 4rem;
  color: var(--neon-cyan);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.success-icon svg {
  width: 64px;
  height: 64px;
}

.success-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.success-line {
  width: 50px;
  height: 4px;
  background: var(--neon-purple);
  margin: 20px auto 0;
}

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

/* --- DECORATIVE BG --- */
.contact__visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  z-index: -1;
  pointer-events: none;
}

.visual-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(188, 19, 254, 0.1);
  border-radius: 50%;
}

.visual-circle.small {
  width: 400px;
  height: 400px;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

@media (max-width: 768px) {
  .contact__form-wrapper {
    padding: 30px 20px;
  }
}

.cookie-popup {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: rgba(14, 14, 22, 0.95);
  border-top: 2px solid var(--neon-purple);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(188, 19, 254, 0.2);
  transition: bottom 0.5s ease-in-out;
  backdrop-filter: blur(10px);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-popup__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-popup__text {
  font-size: 0.9rem;
  color: var(--text-main);
  margin: 0;
}

.cookie-popup__text a {
  color: var(--neon-cyan);
  text-decoration: underline;
}

.cookie-popup__btn {
  padding: 8px 25px; /* Slightly smaller button */
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .cookie-popup__container {
    flex-direction: column;
    text-align: center;
  }
}

.pages {
  padding: 120px 0 60px 0; /* Більший відступ зверху через фіксований хедер */
  min-height: 60vh;
  background: var(--bg-dark);
}

.pages .container {
  max-width: 900px; /* Вужчий контейнер для кращої читабельності тексту */
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );
}

.pages h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #fff;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--neon-cyan);
}

.pages h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #fff;
}

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

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

.pages li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  color: var(--text-muted);
}

.pages li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--neon-purple);
  font-family: var(--font-heading);
  font-weight: bold;
}

.pages a {
  color: var(--neon-cyan);
  text-decoration: underline;
  transition: color 0.3s;
}

.pages a:hover {
  color: var(--neon-purple);
  text-decoration: none;
}

@media (max-width: 768px) {
  .pages .container {
    padding: 25px;
    clip-path: none;
    border: none;
    background: transparent;
  }
  .pages h1 {
    font-size: 2rem;
  }
}
