:root {
  /* Palette: Holographic / Iridescent */
  --color-bg: #fdfbfb;
  --color-bg-alt: #f4f6f8;
  --color-text: #2d3436;
  --color-text-light: #636e72;

  /* Gradients & Accents */
  --grad-primary: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
  --grad-hover: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
  --grad-text: linear-gradient(90deg, #9b5de5, #f15bb5);

  --color-white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);

  /* Typography */
  --font-main: "Outfit", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --radius-blob: 42% 58% 70% 30% / 45% 45% 55% 55%;
  --radius-soft: 24px;
}

/* Reset */
*,
*::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(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  /* Subtle noise texture overlay */
  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.03'/%3E%3C/svg%3E");
}

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

ul {
  list-style: none;
}

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

/* Global Container */
[class*="__container"] {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  /* Fluid shape for buttons */
  border-radius: 50px;
}

.btn--header {
  background: var(--grad-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(161, 140, 209, 0.4);
}

.btn--header:hover {
  background: var(--grad-hover);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(161, 140, 209, 0.6);
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

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

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

.header__logo-icon {
  width: 40px;
  height: 40px;
  animation: float 6s ease-in-out infinite;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

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

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

.header__link {
  font-size: 1rem;
  color: var(--color-text);
  position: relative;
}

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

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

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

/* --- FOOTER --- */
.footer {
  background-color: var(--color-bg-alt);
  padding: 80px 0 30px;
  margin-top: auto; /* Push to bottom if content is short */
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

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

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 20px;
}

.footer__desc {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer__socials {
  display: flex;
  gap: 15px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.footer__socials a:hover {
  transform: translateY(-3px) rotate(10deg);
  background: var(--grad-primary);
  color: white;
}

.footer__title {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--color-text);
}

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

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

.footer__list a:hover {
  color: #9b5de5; /* Purple accent */
  padding-left: 5px;
}

.footer__list--contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.footer__list--contacts i {
  width: 18px;
  height: 18px;
  color: #f15bb5; /* Pink accent */
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #f15bb5;
  font-weight: 500;
  border: 1px solid #fbc2eb;
  padding: 8px 12px;
  border-radius: 12px;
  display: inline-block;
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--color-text-light);
  font-size: 0.85rem;
}

/* --- Animations --- */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header__burger {
    display: block;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 20px;
  }

  .header__nav.active {
    transform: translateX(0);
  }

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

  .footer__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    border-radius: 30px 30px 0 0;
  }
}

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

.hero__blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.6;
  animation: floatBlob 20s infinite alternate;
}

.blob--1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: #a18cd1;
}

.blob--2 {
  bottom: 10%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: #fbc2eb;
  animation-delay: -5s;
}

.blob--3 {
  top: 40%;
  left: 40%;
  width: 30vw;
  height: 30vw;
  background: #ff9a9e;
  animation-delay: -10s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.hero__content {
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  color: #9b5de5;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(155, 93, 229, 0.15);
}

.hero__title {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-text);
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
  max-width: 500px;
}

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

.btn--primary {
  background: var(--color-text);
  color: var(--color-white);
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 52, 54, 0.3);
  background: #000;
}

.btn--glass {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--color-text);
  border-radius: 50px;
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

.hero__note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
}

.hero__note i {
  width: 16px;
}

/* Hero Visual (Parallax Area) */
.hero__visual {
  position: relative;
  height: 600px;
  perspective: 1000px;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    inset 0 0 20px rgba(255, 255, 255, 0.5);
  width: 220px;
  transition: transform 0.1s linear; /* Smooth mouse follow */
}

.float-card__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff 0%, #f4f6f8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b5de5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.float-card__text {
  display: flex;
  flex-direction: column;
}

.float-card__text strong {
  font-size: 1.1rem;
  color: var(--color-text);
}

.float-card__text span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Positioning cards */
.float-card--1 {
  top: 20%;
  left: 10%;
  z-index: 2;
}

.float-card--2 {
  top: 50%;
  right: 5%;
  z-index: 1;
}

.float-card--3 {
  bottom: 15%;
  left: 20%;
  z-index: 3;
}

/* --- CAPABILITIES SECTION --- */
.capabilities {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.cap-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 900px;
  margin: 0 auto;
}

.cap-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

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

.cap-item__shape {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-item__shape svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: drop-shadow(0 10px 20px rgba(161, 140, 209, 0.3));
  animation: pulseShape 4s infinite alternate;
}

.cap-item__shape i {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  color: white;
}

.cap-item__title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-text);
}

.cap-item__desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

@keyframes pulseShape {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

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

  .hero__actions {
    justify-content: center;
  }

  .hero__note {
    justify-content: center;
  }

  .hero__visual {
    height: 400px;
    margin-top: 40px;
  }

  .cap-item,
  .cap-item--reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

/* --- SOLUTIONS SECTION --- */
.solutions {
  padding: 80px 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(251, 194, 235, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
}

.solutions__header {
  margin-bottom: 60px;
  max-width: 600px;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 350px;
  gap: 30px;
}

.sol-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 40px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.sol-card--large {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(244, 246, 248, 0.8) 100%
  );
}

.sol-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(161, 140, 209, 0.2);
}

.sol-card__icon {
  width: 60px;
  height: 60px;
  background: var(--grad-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.sol-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.sol-card p {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.sol-list {
  margin-bottom: 24px;
}

.sol-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.sol-list i {
  color: #9b5de5;
  width: 18px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #9b5de5;
  transition: gap 0.3s ease;
}

.btn-link:hover {
  gap: 12px;
  color: #f15bb5;
}

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

.blog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.blog-post {
  display: flex;
  flex-direction: column;
}

.blog-post--main .blog-post__image {
  width: 100%;
  height: 350px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}

.blog-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-post--main:hover .blog-post__image img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
}

.blog-post__body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.blog-post:hover h3 {
  color: #9b5de5;
}

.read-more {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-color: rgba(155, 93, 229, 0.3);
  text-underline-offset: 4px;
  color: var(--color-text);
}

.read-more:hover {
  text-decoration-color: #9b5de5;
}

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

.blog-post--side {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-post--side:last-child {
  border-bottom: none;
}

.blog-post__date {
  font-size: 0.8rem;
  color: #9b5de5;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.blog-post--side h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* --- FAQ SECTION --- */
.faq {
  padding: 80px 0 120px;
}

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

.faq__wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.faq-btn {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
}

.faq-btn i {
  transition: transform 0.3s ease;
  color: #9b5de5;
}

.faq-btn[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 30px;
}

.faq-content p {
  padding-bottom: 24px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.faq-item.active {
  box-shadow: 0 10px 30px rgba(161, 140, 209, 0.15);
  border-color: #fbc2eb;
}

/* Media Queries for New Sections */
@media (max-width: 900px) {
  .sol-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .sol-card--large {
    grid-column: span 1;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }
}

/* --- CONTACT SECTION --- */
.contact {
  padding: 100px 0;
  position: relative;
  /* Soft mesh gradient background */
  background:
    radial-gradient(at 100% 0%, rgba(161, 140, 209, 0.2) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(251, 194, 235, 0.2) 0px, transparent 50%);
}

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

.contact__title {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
  max-width: 450px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b5de5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-item div {
  display: flex;
  flex-direction: column;
}

.info-item span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.info-item a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

/* Form Styling */
.contact__form-wrapper {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  position: relative;
}

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

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

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  color: #a18cd1;
}

.form-input {
  width: 100%;
  padding: 14px 14px 14px 48px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #a18cd1;
  box-shadow: 0 0 0 4px rgba(161, 140, 209, 0.1);
}

/* Validation Error Styles */
.form-input.error {
  border-color: #ff6b6b;
}

.error-msg {
  display: none;
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  padding-left: 5px;
}

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

/* Checkboxes */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox input {
  margin-top: 4px;
  cursor: pointer;
  accent-color: #9b5de5;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  cursor: pointer;
}

.form-checkbox a {
  color: #9b5de5;
  text-decoration: underline;
}

/* Custom Captcha */
.captcha-box {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.captcha-box input {
  display: none;
}

.captcha-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
  color: var(--color-text);
  z-index: 2;
}

.captcha-box-square {
  width: 24px;
  height: 24px;
  border: 2px solid #c0c0c0;
  border-radius: 6px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* Captcha Checked State */
.captcha-box input:checked + .captcha-label .captcha-box-square {
  background: #00d26a;
  border-color: #00d26a;
}

.captcha-box input:checked + .captcha-label .captcha-box-square::after {
  content: "✔";
  color: white;
  font-size: 14px;
}

.captcha-icon-bg {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 80px;
  height: 80px;
  color: rgba(0, 0, 0, 0.03);
  z-index: 1;
}

.btn--submit {
  width: 100%;
  justify-content: center;
  background: var(--grad-text);
  color: white;
  font-size: 1.1rem;
  padding: 16px;
}

.btn--submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  filter: grayscale(1);
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10;
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.success-message.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  color: #00d26a;
  margin-bottom: 20px;
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* --- COOKIE POPUP --- */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 350px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  display: none; /* Hidden by default, JS enables it */
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.cookie-icon {
  color: #f15bb5;
  flex-shrink: 0;
}

.cookie-popup p {
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.5;
}

.cookie-popup a {
  color: #9b5de5;
  text-decoration: underline;
}

.btn--cookie {
  width: 100%;
  background: var(--color-text);
  color: white;
  justify-content: center;
  padding: 10px;
  font-size: 0.9rem;
}

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

  .contact__content {
    text-align: center;
  }

  .contact__info {
    justify-content: center;
  }

  .info-item {
    justify-content: flex-start;
    text-align: left;
  }

  .cookie-popup {
    left: 20px;
    right: 20px;
    width: auto;
    bottom: 20px;
  }
}

/* --- TEXT PAGES (Privacy, Terms, Cookies) --- */
.pages {
  padding: 140px 0 100px; /* Great top padding for fixed header */
  min-height: 80vh;
  background: radial-gradient(
    circle at top right,
    rgba(251, 194, 235, 0.1),
    transparent 40%
  );
}

.pages h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pages h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--color-text);
  border-left: 4px solid #a18cd1;
  padding-left: 15px;
}

.pages p {
  margin-bottom: 20px;
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 800px;
  text-align: justify;
}

.pages ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style: disc;
  max-width: 800px;
}

.pages li {
  margin-bottom: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.pages strong {
  color: var(--color-text);
  font-weight: 600;
}

.pages a {
  color: #9b5de5;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

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