/* --- VARIABLES: Cyberpunk Palette --- */
:root {
  --bg-dark: #050508;
  --bg-secondary: #0f1016;
  --text-main: #e0e0e0;
  --text-muted: #8a8b9c;

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

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

  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --container-width: 1280px;
  --header-height: 80px;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.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);
  z-index: 1000;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

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

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

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text-main);
  text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
  letter-spacing: 1px;
}

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

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

.header__link {
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

/* Hover Effect: Glitchy Underline */
.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  transition: var(--transition);
}

.header__link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}

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

.header__cta {
  padding: 10px 25px;
  border: 2px solid var(--neon-purple);
  color: var(--neon-purple);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  clip-path: polygon(
    10% 0,
    100% 0,
    100% 70%,
    90% 100%,
    0 100%,
    0 30%
  ); /* Asymmetric Button */
}

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

.header__burger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* --- MAIN --- */
.main {
  padding-top: var(--header-height);
  min-height: 60vh; /* Temporary spacer */
}

/* --- FOOTER --- */
.footer {
  background-color: var(--bg-secondary);
  border-top: 2px solid var(--neon-purple);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative asymmetric element */
.footer::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 10%;
  width: 100px;
  height: 4px;
  background: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan);
}

.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;
  margin-bottom: 60px;
}

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

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

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

.footer__badge {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(45deg, var(--neon-purple), transparent);
  border: 1px solid var(--neon-purple);
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.footer__title {
  font-family: var(--font-heading);
  color: var(--neon-cyan);
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer__link {
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--neon-cyan);
  padding-left: 5px; /* Micro-interaction: shift */
  text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
}

.footer__icon {
  color: var(--neon-pink);
  min-width: 20px;
}

.footer__contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .header__cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s ease;
    border-left: 2px solid var(--neon-cyan);
  }

  .header__nav.active {
    right: 0;
  }

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

  .header__burger {
    display: block;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .footer__badge {
    margin: 0 auto;
  }
}

/* --- UTILS --- */
.text-neon {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(188, 19, 254, 0.1),
    transparent 50%
  );
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 0.8fr; /* Asymmetric Grid */
  align-items: center;
  gap: 60px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 243, 255, 0.1);
  border-left: 3px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 3.5rem; /* Large typography */
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
  min-height: 3.3em; /* Reserve space for typing */
}

.cursor {
  color: var(--neon-pink);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero__description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

.hero__actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero__btn {
  padding: 15px 35px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.hero__btn--primary {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.hero__btn--primary:hover {
  background: #fff;
  box-shadow: 0 0 20px var(--neon-cyan);
  transform: translateX(5px);
}

.hero__btn--secondary {
  border: 1px solid var(--text-muted);
  color: #fff;
  clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
}

.hero__btn--secondary:hover {
  border-color: var(--neon-purple);
  color: var(--neon-purple);
}

.hero__stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.hero__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}

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

/* Hero Visual (Asymmetric & Overlapping) */
.hero__visual {
  position: relative;
}

.hero__img-wrapper {
  position: relative;
  z-index: 2;
  clip-path: polygon(20% 0%, 100% 0, 100% 85%, 80% 100%, 0 100%, 0 15%);
  border: 2px solid transparent;
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-cyan))
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(40%) contrast(1.2);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0) 0%,
    rgba(5, 5, 8, 0.8) 100%
  );
  pointer-events: none;
}

/* Decorative elements behind image */
.hero__deco {
  position: absolute;
  background: transparent;
  border: 1px solid var(--neon-purple);
  z-index: 1;
}

.hero__deco--1 {
  width: 100%;
  height: 100%;
  top: 20px;
  right: -20px;
  clip-path: polygon(20% 0%, 100% 0, 100% 85%, 80% 100%, 0 100%, 0 15%);
  opacity: 0.5;
}

.hero__deco--2 {
  width: 150px;
  height: 150px;
  bottom: -40px;
  left: -40px;
  background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(20px);
}

/* --- METHODOLOGY SECTION --- */
.methodology {
  padding: 100px 0;
  position: relative;
}

.methodology__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.method-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.method-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--neon-cyan);
}

.method-card--accent {
  border-color: var(--neon-purple);
  box-shadow: 0 0 30px rgba(188, 19, 254, 0.1);
}

.method-card__icon-box {
  width: 60px;
  height: 60px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--neon-cyan);
}

.method-card--accent .method-card__icon-box {
  color: var(--neon-purple);
  border-color: var(--neon-purple);
}

.method-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}

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

.method-card__step {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
  font-weight: 900;
}

.method-card:hover .method-card__step {
  color: rgba(0, 243, 255, 0.1);
}

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

  .hero__description {
    margin: 0 auto 40px;
    border-left: none;
    padding-left: 0;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

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

/* --- CONSULTING SECTION --- */
.consulting {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

/* Background diagonal line */
.consulting__bg-line {
  position: absolute;
  top: 0;
  right: 30%;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--neon-purple),
    transparent
  );
  z-index: 0;
}

.consulting__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.consulting__visual {
  position: relative;
}

/* Cyberpunk Frame for Image */
.consulting__frame {
  position: relative;
  padding: 10px;
  border: 1px solid var(--neon-cyan);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 80%,
    80% 100%,
    0 100%
  ); /* Asymmetric corner */
}

.consulting__frame::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--neon-purple);
  border-left: 2px solid var(--neon-purple);
}

.consulting__img {
  width: 100%;
  filter: sepia(20%) hue-rotate(180deg) contrast(1.1);
  display: block;
}

.consulting__scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 243, 255, 0.5);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: scan 3s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.consulting__tech-data {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--neon-cyan);
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
}

.consulting__list {
  margin: 30px 0;
}

.consulting__item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-main);
}

.consulting__icon {
  color: var(--neon-purple);
  flex-shrink: 0;
}

.consulting__offer {
  margin-top: 40px;
  padding: 25px;
  border: 1px dashed var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.consulting__offer-text strong {
  color: var(--neon-cyan);
}

.consulting__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid var(--neon-purple);
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: var(--transition);
  width: fit-content;
}

.consulting__btn:hover {
  background: var(--neon-purple);
  box-shadow: 0 0 15px var(--neon-purple);
}

/* --- BLOG SECTION --- */
.blog {
  padding: 100px 0;
}

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

.section-header--center .section-subtitle {
  margin: 0 auto;
}

.blog__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Horizontal Blog Card Layout */
.blog-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-right-color: var(--neon-cyan);
  transform: translateX(10px);
}

/* Reversing layout for even items if desired, but here specific class */
.blog-card--reversed {
  border-right: none;
  border-left: 2px solid transparent;
}

.blog-card--reversed:hover {
  border-left-color: var(--neon-purple);
}

.blog-card__image-box {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.1);
}

.blog-card__date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bg-dark);
  color: var(--neon-cyan);
  padding: 5px 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card__title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.blog-card:hover .blog-card__title {
  color: var(--neon-cyan);
}

.blog-card__excerpt {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.blog-card__link {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #fff;
  position: relative;
  width: fit-content;
}

.blog-card__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--neon-purple);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.blog-card__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

  .blog-card {
    grid-template-columns: 1fr;
    border-right: none;
    border-bottom: 2px solid transparent;
  }

  .blog-card:hover {
    border-bottom-color: var(--neon-cyan);
    transform: translateY(-5px);
  }

  .blog-card__image-box {
    height: 250px;
  }
}

/* --- REVIEWS --- */
.reviews {
  padding: 100px 0;
}

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

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

.review-card {
  background: #0a0b10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 90%);
}

.review-card--accent {
  border-color: var(--neon-purple);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  border: 1px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
}

.review-card__name {
  display: block;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
}

.review-card__status {
  font-size: 0.75rem;
  color: var(--neon-purple);
  text-transform: uppercase;
}

.review-card__text {
  font-style: italic;
  color: var(--text-muted);
}

/* --- CONTACT SECTION --- */
.contact {
  padding: 100px 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(0, 243, 255, 0.05),
    transparent 40%
  );
}

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

.contact__info {
  padding-top: 20px;
}

.contact__note {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--neon-cyan);
  background: rgba(0, 243, 255, 0.05);
  padding: 15px;
  border-left: 3px solid var(--neon-cyan);
}

/* Form Styling */
.contact__form {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  background: #050508;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.error-msg {
  display: none;
  color: var(--neon-pink);
  font-size: 0.8rem;
  margin-top: 5px;
}

.form-input.error {
  border-color: var(--neon-pink);
}

.form-input.error + .error-msg {
  display: block;
}

/* Custom Checkbox */
.hidden-checkbox {
  display: none;
}

.custom-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  user-select: none;
}

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

.checkbox-box {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #050508;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.checkbox-box i {
  opacity: 0;
  width: 14px;
  color: #050508;
  transition: var(--transition);
}

.hidden-checkbox:checked + .custom-checkbox-label .checkbox-box {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.hidden-checkbox:checked + .custom-checkbox-label .checkbox-box i {
  opacity: 1;
}

/* Submit Button & Loader */
.contact__submit {
  width: 100%;
  padding: 15px;
  background: var(--neon-purple);
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  clip-path: polygon(5% 0, 100% 0, 100% 70%, 95% 100%, 0 100%, 0 30%);
}

.contact__submit:hover {
  background: var(--neon-cyan);
  color: #000;
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.form-status {
  margin-top: 15px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 24px;
}

.status-success {
  color: var(--neon-cyan);
}
.status-error {
  color: var(--neon-pink);
}

/* --- COOKIE POPUP --- */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 20px;
  right: 20px;
  max-width: 500px;
  margin: 0 auto; /* Center on mobile if needed, or stick to left/right */
  background: rgba(15, 16, 22, 0.95);
  border: 1px solid var(--neon-purple);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.cookie-popup.show {
  bottom: 20px;
}

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

.cookie-icon {
  color: var(--neon-cyan);
}

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

.cookie-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.cookie-btn:hover {
  background: #fff;
  color: #000;
}

/* --- TECHNICAL PAGES (Privacy, Terms, etc.) --- */
/* Add this to style.css for future pages */
.pages {
  padding: 120px 0 80px;
}

.pages h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--neon-cyan);
  margin-bottom: 30px;
}

.pages h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin: 30px 0 15px;
}

.pages p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.7;
}

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

.pages li {
  list-style: disc;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pages a {
  color: var(--neon-purple);
}

@media (max-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr;
  }
  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }
}

/* Додай це в style.css, можна в секцію HEADER */

.header__logo-img {
  height: 40px; /* Оптимальний розмір для хедера */
  width: auto; /* Ширина підлаштується автоматично */
  display: block;
  object-fit: contain;
}

/* Якщо на мобільному логотип все ще здається великим, можна зменшити */
@media (max-width: 768px) {
  .header__logo-img {
    height: 35px;
  }
}
