/* --- Variables & Setup --- */
:root {
  --font-main: "Outfit", sans-serif;

  /* Colors: Dark & Neon Theme */
  --clr-bg: #0f111a;
  --clr-text-main: #ffffff;
  --clr-text-muted: #a0a0b0;

  --clr-primary: #6366f1; /* Indigo Neon */
  --clr-accent: #ec4899; /* Pink Neon */
  --clr-success: #10b981;

  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

  /* Geometry */
  --radius-full: 999px; /* Hyper-rounded */
  --radius-card: 32px;

  /* Layout */
  --container-width: 1240px;
  --header-height: 80px;
}

*,
*::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(--clr-bg);
  color: var(--clr-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  /* Background subtle gradient mesh */
  background-image: radial-gradient(
      circle at 15% 50%,
      rgba(99, 102, 241, 0.15) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(236, 72, 153, 0.15) 0%,
      transparent 25%
    );
  background-attachment: fixed;
}

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

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

ul {
  list-style: none;
}

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

/* --- Buttons (Global) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  transition: all 0.3s ease;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  /* Glass Effect for Header Bar */
  background: rgba(15, 17, 26, 0.6);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 0 30px;
}

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

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

.header__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, var(--clr-text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__nav {
  display: none;
}

@media (min-width: 992px) {
  .header__nav {
    display: block;
  }
}

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

.nav__link {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  font-weight: 500;
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--clr-text-main);
}

/* Hover Animation: Dot appears below */
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 6px;
  height: 6px;
  background-color: var(--clr-accent);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.nav__link:hover::after {
  transform: translateX(-50%) scale(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__btn {
  display: none;
}

@media (min-width: 768px) {
  .header__btn {
    display: inline-flex;
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

.header__burger {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: block;
}

@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 17, 26, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

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

.mobile-menu__link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-text-main);
}

.mobile-menu__link--cta {
  color: var(--clr-accent);
}

/* --- Footer --- */
.footer {
  margin-top: 100px;
  padding-top: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  border-top: 1px solid var(--glass-border);
}

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

@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__container {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer__col--brand {
  padding-right: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer__logo-img {
  width: 30px;
}

.footer__desc {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.footer__note {
  font-size: 0.85rem;
  color: var(--clr-accent);
  background: rgba(236, 72, 153, 0.1);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

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

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

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

.footer__link:hover {
  color: var(--clr-primary);
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer__icon {
  min-width: 20px;
  color: var(--clr-primary);
}

.footer__bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  /* Dark subtle background backing the canvas */
  background: radial-gradient(circle at center, #1a1d2d 0%, var(--clr-bg) 70%);
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6; /* Slight transparency so text pops */
}

.hero__container {
  position: relative;
  z-index: 2; /* Content above canvas */
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 800px;
  /* Asymmetry: Push slightly to the left or right intentionally */
  margin-left: 5%;
}

/* Badge styled as a pill */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--clr-success);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero__badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--clr-success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Typography Scale */
.hero__title {
  font-size: clamp(3rem, 6vw, 6rem); /* Responsive giant text */
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--clr-primary),
    var(--clr-accent),
    #fff
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 5s ease infinite;
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero__desc {
  font-size: 1.25rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Buttons and Actions */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.btn--lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn--glow {
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on button */
.btn--glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% {
    left: 200%;
  }
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  opacity: 0.8;
}

.hero__note-icon {
  width: 18px;
  height: 18px;
  color: var(--clr-primary);
}

/* Abstract Glass Shapes (Decor) */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
}

.hero__shape--1 {
  width: 400px;
  height: 400px;
  background: var(--clr-primary);
  top: -100px;
  right: -50px;
  animation: float 8s ease-in-out infinite;
}

.hero__shape--2 {
  width: 300px;
  height: 300px;
  background: var(--clr-accent);
  bottom: 50px;
  left: -100px;
  animation: float 6s ease-in-out infinite reverse;
}

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

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero__content {
    margin-left: 0;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
  }

  .hero__shape {
    opacity: 0.2; /* Less distraction on mobile */
  }
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

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

/* --- ABOUT GRID (Bento Style) --- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Glass Panel Style */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 48px; /* Hyper-rounded per requirement */
  padding: 40px;
  transition: transform 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  position: relative;
}

.glass-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: var(--glass-shadow);
}

/* Grid Layout for Desktop */
@media (min-width: 992px) {
  .about__grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
  }

  /* Block 1: Takes 7 columns */
  .about__card--large {
    grid-column: span 7;
    grid-row: span 1;
  }

  /* Block 2: Takes 5 columns but spans 2 rows (Tall) */
  .about__card--tall {
    grid-column: span 5;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Block 3: Takes 7 columns (fills space under Block 1) */
  .about__card--wide {
    grid-column: span 7;
    grid-row: span 1;
  }
}

/* Typography inside cards */
.about__card-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}

.about__card-desc {
  color: var(--clr-text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.about__icon-box {
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--clr-primary);
}

.about__stat {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.about__stat-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-success);
}

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

/* Specific Styles for Tall Card */
.badge--glow {
  background: rgba(236, 72, 153, 0.15);
  color: var(--clr-accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 20px;
  border: 1px solid rgba(236, 72, 153, 0.2);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
}

.about__card-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  margin-top: 20px;
  opacity: 0.8;
  mix-blend-mode: luminosity;
  transition: 0.3s;
}

.about__card--tall:hover .about__card-img {
  mix-blend-mode: normal;
  opacity: 1;
}

/* Specific Styles for Wide Card */
.about__content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-primary);
  font-weight: 600;
  transition: gap 0.3s ease;
}

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

/* Decorative Circles inside Wide Card */
.about__visual {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.circle-visual {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--clr-primary);
  position: absolute;
  animation: spin 10s linear infinite;
  border-left-color: transparent;
}

.circle-visual--small {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-color: var(--clr-accent);
  border-right-color: transparent;
  animation: spin 7s linear infinite reverse;
}

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

@media (max-width: 768px) {
  .about__content-row {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

/* --- FEATURES SECTION --- */
.features {
  position: relative;
  overflow: hidden;
}

/* Background Glow Blob */
.features__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(99, 102, 241, 0.15),
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  position: relative;
}

/* Vertical Connecting Line */
.features__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--clr-primary),
    var(--clr-accent),
    transparent
  );
  transform: translateX(-50%);
  opacity: 0.3;
  z-index: -1;
}

/* Feature Item Layout */
.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.feature-item__visual,
.feature-item__content {
  flex: 1;
}

/* Reverse Modifier for Zig-Zag */
.feature-item--reverse {
  flex-direction: row-reverse;
}

/* Visual Card Styling */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
}

.feature-card-visual {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 60px; /* Super rounded */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.feature-item:hover .feature-card-visual {
  transform: scale(1.05) rotate(2deg);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-item--reverse:hover .feature-card-visual {
  transform: scale(1.05) rotate(-2deg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  color: var(--clr-primary);
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.6));
}

.feature-icon--accent {
  color: var(--clr-accent);
  filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.6));
}

/* Internal decoration inside card */
.feature-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--clr-primary);
  filter: blur(60px);
  opacity: 0.4;
  border-radius: 50%;
}

.feature-decoration--accent {
  background: var(--clr-accent);
}

/* Content Styling */
.feature-num {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: -1;
  font-family: var(--font-main);
}

.feature-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.feature-desc {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 450px;
}

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

.feature-checkpoints li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-text-main);
  font-weight: 500;
}

.feature-checkpoints li i {
  width: 20px;
  height: 20px;
  color: var(--clr-success);
}

.feature-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-full);
  color: var(--clr-primary);
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .features__list::before {
    display: none; /* Hide line on mobile */
  }

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

  .feature-desc {
    margin: 0 auto 30px;
  }

  .feature-checkpoints {
    align-items: center;
  }

  .feature-card-visual {
    height: 200px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* --- REVIEWS SECTION --- */
.reviews__wrapper {
  margin: 0 -20px; /* Bleed to edges on mobile */
  padding: 0 20px 40px; /* Bottom padding for shadow/scroll space */
  overflow-x: auto;
  /* Hide Scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews__wrapper::-webkit-scrollbar {
  display: none;
}

.reviews__track {
  display: flex;
  gap: 24px;
  width: max-content; /* Ensure items sit in a row */
  padding: 10px 5px; /* Space for hover transform */
}

/* Scroll Snap Logic */
.reviews__wrapper {
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
}

.review-card {
  scroll-snap-align: start;
  width: 320px; /* Fixed width for consistency */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 40px; /* Rounded corners */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
}

@media (min-width: 768px) {
  .review-card {
    width: 400px; /* Wider on desktop */
  }
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.review-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-primary);
}

.review-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.review-card__loc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.review-card__rating {
  margin-left: auto; /* Push to right */
  display: flex;
  gap: 4px;
}

.review-card__rating svg {
  width: 16px;
  height: 16px;
  color: #f59e0b; /* Amber/Gold color for stars */
  fill: #f59e0b;
}

.review-card__rating .star-half {
  fill: transparent; /* Last star half filled if needed, or outline */
}

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

.review-card strong {
  color: var(--clr-text-main);
  font-weight: 600;
}

/* CTA Box below reviews */
.reviews__cta-box {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  background: radial-gradient(
      circle at center,
      rgba(99, 102, 241, 0.1),
      transparent 80%
    ),
    var(--glass-bg);
  border: 1px solid var(--clr-primary);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

@media (min-width: 768px) {
  .reviews__cta-box {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 40px 60px;
  }

  .reviews__cta-content {
    max-width: 50%;
  }

  .reviews__cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }
}

.reviews__cta-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #fff;
}

.reviews__cta-content p {
  color: var(--clr-text-muted);
}

.reviews__cta-note {
  font-size: 0.8rem;
  color: var(--clr-success);
  font-weight: 500;
}

/* --- FAQ SECTION --- */
.faq__container {
  max-width: 800px; /* Narrower container for better readability */
}

.faq__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  padding: 0; /* Override glass-panel padding */
  transition: all 0.3s ease;
  border-radius: 30px; /* Slightly less rounded than others for stacking */
}

/* Active State Styling */
.faq__item.is-active {
  border-color: var(--clr-primary);
  background: rgba(99, 102, 241, 0.08); /* Slight indigo tint */
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--clr-text-main);
}

.faq__question {
  font-size: 1.1rem;
  font-weight: 600;
  padding-right: 20px;
}

.faq__icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq__icon i {
  width: 18px;
  height: 18px;
  color: var(--clr-text-muted);
}

/* Rotate icon when active */
.faq__item.is-active .faq__icon {
  transform: rotate(45deg);
  background: var(--clr-primary);
}

.faq__item.is-active .faq__icon i {
  color: #fff;
}

/* Content Animation */
.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); /* Smooth easing */
}

.faq__body {
  padding: 0 32px 32px;
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.faq__body strong {
  color: var(--clr-success);
}

/* --- CONTACT SECTION --- */
.contact {
  position: relative;
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2), transparent 70%);
  filter: blur(80px);
  z-index: -1;
}

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

@media (min-width: 992px) {
  .contact__container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left Side Info */
.contact__info .section-title {
  text-align: left;
  margin-left: 0;
}

.contact__info .section-subtitle {
  text-align: left;
  margin-left: 0;
  max-width: 400px;
  margin-bottom: 40px;
}

.contact__perks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__perk {
  display: flex;
  gap: 20px;
  align-items: center;
}

.perk-icon {
  width: 50px;
  height: 50px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.contact__perk h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

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

/* Right Side Form */
.contact__form-wrapper {
  position: relative;
  padding: 40px;
  border-radius: 40px;
}

.contact__form-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

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

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

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--clr-text-muted);
  transition: color 0.3s ease;
}

.form-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--clr-primary);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

.form-input:focus + .input-icon {
  /* Note: This selector won't work perfectly with markup structure, JS handles validation color */
  color: var(--clr-primary);
}

/* Validation Styles */
.form-input.valid {
  border-color: var(--clr-success);
}
.form-input.invalid {
  border-color: #ef4444;
}
.error-msg {
  display: none;
  color: #ef4444;
  font-size: 0.8rem;
  margin-left: 20px;
  margin-top: 5px;
}
.form-input.invalid ~ .error-msg {
  display: block;
}

/* Custom Captcha */
.form-captcha {
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
  width: fit-content;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.form-captcha.active {
  border-color: var(--clr-success);
  background: #fff;
}

.captcha-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.form-captcha:hover .captcha-checkbox {
  border-color: #a0a0a0;
}

.captcha-check-icon {
  width: 20px;
  height: 20px;
  color: var(--clr-success);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.5, 0, 0.2, 1.5);
}

.form-captcha.active .captcha-check-icon {
  opacity: 1;
  transform: scale(1);
}

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

.captcha-logo {
  width: 24px;
  margin-left: auto;
  opacity: 0.7;
}

/* Terms Checkbox */
.form-terms {
  margin-bottom: 24px;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

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

.checkmark {
  height: 20px;
  width: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

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

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

.custom-checkbox a {
  color: var(--clr-primary);
  text-decoration: underline;
}

/* Button & Full Width */
.btn--full {
  width: 100%;
}

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

/* Success Message Overlay */
.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-bg); /* Use solid bg or heavy blur */
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.4s ease;
  z-index: 10;
}

.form-success.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

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

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

/* --- COOKIE POPUP --- */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px); /* Hidden initially */
  width: 90%;
  max-width: 600px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.cookie-popup.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-popup__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 30px;
  border-radius: var(--radius-full); /* Pill shape */
  background: rgba(15, 17, 26, 0.9);
  border: 1px solid var(--clr-primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.cookie-icon {
  color: #f59e0b; /* Cookie color */
  flex-shrink: 0;
}

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

.btn--sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .cookie-popup__content {
    flex-direction: column;
    text-align: center;
    border-radius: 24px;
  }
  .cookie-popup__text {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- LEGAL PAGES STYLING (Privacy, Terms etc.) --- */
/* Structure: main > section.pages > .container */

.pages {
  padding-top: 140px; /* Space for fixed header */
  padding-bottom: 80px;
  min-height: 80vh;
}

.pages .container {
  max-width: 900px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 40px;
}

@media (min-width: 768px) {
  .pages .container {
    padding: 60px 80px;
  }
}

.pages h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 20px;
}

.pages h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--clr-primary);
}

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

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

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

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

.pages strong {
  color: #fff;
}

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

.pages a:hover {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
}
