* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
  background-color: #050505;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

/* ----- ---- */
[data-animation] {
  opacity: 0;
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
[data-animation='fade-up'] {
  transform: translateY(40px);
}
[data-animation='fade-down'] {
  transform: translateY(-40px);
}
[data-animation='fade-left'] {
  transform: translateX(40px);
}
[data-animation='fade-right'] {
  transform: translateX(-40px);
}
[data-animation='fade-light'] {
  transform: scale(0.98);
}
.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.main-nav {
  margin-left: auto;
  margin-right: 40px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #ffffff;
  font-size: 1.2rem !important;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  text-decoration: none;
  padding-bottom: 4px;
  display: inline-block;
}

/* --------  */
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e51a66;
  transition: width 0.3s ease-in-out;
}

.main-nav a:hover {
  color: #e51a66;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-btn {
  padding: 8px 20px;
  border: 1.5px solid #ffffff;
  background: transparent;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  color: #ffffff;
  text-decoration: none;
}

.header-btn:hover {
  background: #e51a66;
  color: white !important;
}

/* --- Navigatio-- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: white;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  margin: 25px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

.mobile-menu.active li {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered load animation delays for list items */
.mobile-menu.active li:nth-child(1) {
  transition-delay: 0.1s;
}
/*cite: 1*/
.mobile-menu.active li:nth-child(2) {
  transition-delay: 0.2s;
}
/*cite: 1*/
.mobile-menu.active li:nth-child(3) {
  transition-delay: 0.3s;
}
/*cite: 1*/
.mobile-menu.active li:nth-child(4) {
  transition-delay: 0.4s;
}
/*cite: 1*/
.mobile-menu.active li:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-menu a {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  color: white;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a.accent {
  color: #e51a66;
}

@media (max-width: 768px) {
  .site-header {
    padding: 15px 20px;
  }

  .header-container {
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ---------------------------------- */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  isolation: isolate;
  z-index: 1;
}
.video-hero__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.video-hero__content {
  position: relative;
  z-index: 3;
  padding: 0 20px;
  max-width: 800px;
}
.video-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.video-hero__subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.video-hero__btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .video-hero__title {
    font-size: 1.45rem;
    letter-spacing: 1px;
  }
  .video-hero__subtitle {
    font-size: 0.95rem;
  }
  .video-hero__btn {
    padding: 10px 22px;
    font-size: 0.8rem;
  }
}

/* ----------------- -------------------- */
.details-section {
  background-color: black;
  padding-bottom: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0%;
  box-sizing: border-box;
}
.details-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0px;
}
.overlapping-info-card {
  background-color: #ffffff;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
  margin-top: -20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 10px !important;
  padding: 24px 40px 24px 40px;

  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.overlapping-info-card::after {
  content: '';
  display: block;
  padding-right: 20px;
  flex-shrink: 0;
}
.overlapping-info-card::-webkit-scrollbar {
  display: none;
}
@media (min-width: 769px) {
  .overlapping-info-card {
    clip-path: polygon(4% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding-left: 60px;
    margin-left: 10%;
    width: 90%;
  }
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.icon-placeholder {
  font-size: 24px;
  opacity: 0.6;
}
.info-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.info-label {
  color: #e51a66;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.info-value {
  margin: 0;
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}
.info-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.info-logo img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}
.info-logo:last-child img {
  margin-right: 0;
}
.overlapping-info-card {
  gap: 10px !important;
}
@media (max-width: 992px) {
  .details-section {
    margin-left: 0;
    padding-left: 20px;
  }
  .overlapping-info-card {
    padding: 16px 20px;
    gap: 15px;
    margin-left: 0;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .overlapping-info-card {
    clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);

    padding-left: 60px;

    margin-left: auto;
    margin-right: 0;

    width: 90%;

    box-sizing: border-box;
  }
}

@media (max-width: 992px) {
  .details-section {
    margin-left: 0;
    padding-left: 20px;
  }
  .overlapping-info-card {
    padding: 16px 20px;
    gap: 15px;
    margin-left: 0;
    width: 100%;
    clip-path: none;
  }
}

@media (max-width: 768px) {
  .overlapping-info-card {
    margin-left: 0;
    width: 100%;
    border-radius: 0;
    clip-path: none;
  }
}

@media (max-width: 600px) {
  .overlapping-info-card {
    margin-top: -30px;
    padding: 12px 15px;
    gap: 12px;
    clip-path: polygon(2% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding-left: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .icon-placeholder {
    font-size: 18px;
  }
  .info-label {
    font-size: 0.85rem;
  }
  .info-value {
    font-size: 0.95rem;
  }
  .info-logo img {
    max-height: 30px;
    margin-right: 6px;
  }
}

/* ------------------------------------- */
.content-section {
  background: #050505;
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 10px 40px;
}
.split-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-label {
  display: inline-block;
  font-size: 1.15rem;
  letter-spacing: 5px;
  /* color: #e51a66; */
  /* color: 1px solid #e51a66; */

  -webkit-text-stroke: 1.5px #f03c7e;
  margin-bottom: 20px;
  font-weight: 700;
}
.section-titlee {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
}
.section-titlee .accent {
  color: #dfba9d;
}
.section-desc {
  color: rgba(255, 255, 255, 0.856);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}
.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  margin-bottom: 8px;
}
.stat-number {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
}
.stat-suffix {
  color: #e51a66;
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 2px;
}
.stat-label {
  color: rgba(255, 255, 255, 0.783);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
}
.editorial-frame {
  position: relative;
  width: 100%;
}
.editorial-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 120px;
  min-height: 480px;
  overflow: hidden;
  border-radius: 4px;
}
.editorial-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----why core--- */

@media (max-width: 768px) {
  .content-section {
    padding: 60px 20px;
    overflow: visible;
  }
  .split-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
  .split-text-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 0;
  }
  .split-text-column .section-desc {
    max-width: 100%;
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-item {
    text-align: center;
  }
  .stat-number-wrapper {
    justify-content: center;
  }

  .split-image-column {
    width: 100%;
    padding-left: 0;
  }
  .editorial-image-wrapper {
    min-height: 300px;
    padding-bottom: 75%;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 50px 16px;
  }
  .split-container {
    gap: 30px;
  }
  .stats-grid {
    gap: 8px;
    padding-top: 20px;
  }
  .stat-number {
    font-size: 1.65rem;
  }
  .stat-suffix {
    font-size: 1.1rem;
  }
  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
  }
  .editorial-image-wrapper {
    min-height: 240px;
  }
}
/* -------------------- SOFTWARE TOOLS -------------------- */
.software-tools-section {
  background: #050505;
  padding: 100px 4%;
  color: #ffffff;
  position: relative;
  z-index: 3;
}
.software-container {
  max-width: 1200px;
  margin: 0 auto;
}
.software-header {
  text-align: center;
  margin-bottom: 60px;
}

.software-book-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.software-book-grid .book-container {
  height: 280px;
  perspective: 1200px;
  flex: 1 1 200px;
  max-width: calc(25% - 23px);
}

@media (max-width: 1200px) {
  .software-book-grid .book-container {
    max-width: calc(33.333% - 20px);
  }
}

@media (max-width: 992px) {
  .software-book-grid .book-container {
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .software-book-grid .book-container {
    max-width: 100%;
  }
}
/* --  */
.book-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.book-cover,
.book-inside-page {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}
.book-inside-page {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  z-index: 1;
  box-shadow: inset 10px 0 20px rgba(0, 0, 0, 0.6);
}
.software-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #ffffff;
}
.software-purpose {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 15px;
}
.software-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #dfba9d;
  background: rgba(223, 186, 157, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(223, 186, 157, 0.15);
}
.book-cover {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  transform-origin: left center;
  transition:
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    background 0.3s,
    border-color 0.3s;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.5);
  padding: 10px;
}
.software-icon-wrapper {
  width: 105px;
  height: 105px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  padding: 6px;
}
.software-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cover-hint {
  font-size: 0.65rem;
  color: ffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.book-container:hover .book-cover {
  transform: rotateY(-140deg);
  background: #1a1a1a;
  border-color: rgba(229, 26, 102, 0.4);
}
.book-container:hover .book-inner {
  transform: rotateX(5deg) rotateY(15deg);
}
.book-container:hover .cover-hint {
  color: #e51a66;
}
@media (max-width: 768px) {
  .software-tools-section {
    padding: 40px 16px;
  }
  .book-container:hover .book-cover {
    transform: none;
    opacity: 0;
  }
  .book-container:hover .book-inner {
    transform: none;
  }
}

/* -------transformation----------------- */
.transformation-section {
  background: #050505;
  padding: 100px 4%;
  color: #ffffff;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.transformation-container {
  max-width: 1200px;
  margin: 0 auto;
}
.transform-header {
  text-align: center;
  margin-bottom: 50px;
}
.transform-header .section-desc {
  margin: 0 auto;
}
.comparison-slider-wrapper {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  user-select: none;
}
.image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.image-layer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.blueprint-layer {
  width: 50%;
  z-index: 2;
  filter: saturate(0.2) sepia(0.3) hue-rotate(180deg) brightness(0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.blueprint-layer img {
  width: 1200px;
  max-width: none;
}
.layer-badge {
  position: absolute;
  bottom: 24px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.blueprint-badge {
  left: 24px;
  background: rgba(229, 26, 102, 0.2);
  border: 1px solid #e51a66;
  color: #ffffff;
}
.design-badge {
  right: 24px;
  background: rgba(223, 186, 157, 0.2);
  border: 1px solid #dfba9d;
  color: #532f14;
}
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #e51a66;
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
}
.handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #e51a66;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(229, 26, 102, 0.6);
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.slider-handle:hover .handle-button,
.slider-handle:active .handle-button {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: #ffffff;
  color: #e51a66;
}
@media (max-width: 992px) {
  .comparison-slider-wrapper {
    height: 400px;
  }
}
@media (max-width: 600px) {
  .transformation-section {
    padding: 60px 16px;
  }
  .comparison-slider-wrapper {
    height: 300px;
  }
  .layer-badge {
    bottom: 12px;
    font-size: 0.6rem;
    padding: 4px 10px;
  }
}

/* ------------------------------------- */
.slider {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: none;
  position: relative;
  z-index: 1;
}
.slider__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  flex-shrink: 0;
}
.slider__menu {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: none;
  cursor: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.3s ease;
}
.slider__menu span {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}
.slider__label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  display: none;
}
.slider__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 24px 32px;
  min-height: 0;
  position: relative;
}
.slider__left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  z-index: 4;
  margin-bottom: 16px;
}
.slider__title {
  font-size: clamp(42px, 11vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  overflow: hidden;
  position: relative;
  font-family: 'Playfair Display', serif;
}
.slider__title span {
  display: inline-block;
  will-change: transform;
}
.slider__footer {
  flex-shrink: 0;
  margin-top: 16px;
}
.slider__description,
.slider__location {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  text-transform: uppercase;
  font-family: 'Instrument Sans', sans-serif;
}
.slider__location {
  margin-top: 8px;
}

.slider__right {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.slider__images {
  width: 100%;
  height: 100%;
  position: relative;
}
.slider__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  aspect-ratio: 1.2;
  overflow: hidden;
  will-change: transform, filter, opacity;
  contain: layout style;
  border-radius: 24px;
  transform: translate(-50%, -50%);
}
.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .slider__header {
    padding: 40px 56px;
  }
  .slider__label {
    display: flex;
  }
  .slider__body {
    padding: 0 56px 56px;
  }
  .slider__left {
    margin-bottom: 24px;
  }
  .slider__title {
    font-size: clamp(72px, 9vw, 120px);
  }
  .slider__footer {
    margin-top: 32px;
  }
  .slider__slide {
    width: 75%;
    aspect-ratio: 1.4;
  }
  .slider__cursor {
    width: 88px;
    height: 88px;
  }
}
@media screen and (min-width: 1024px) {
  .slider__body {
    flex-direction: row;
  }
  .slider__left {
    width: 55%;
    flex-shrink: 0;
    z-index: auto;
    margin-bottom: 0;
  }
  .slider__title {
    font-size: clamp(80px, 10vw, 200px);
    margin-top: auto;
    margin-bottom: auto;
  }
  .slider__footer {
    margin-top: 48px;
  }
  .slider__right {
    position: static;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    opacity: 1;
    pointer-events: auto;
  }
  .slider__slide {
    width: 85%;
    aspect-ratio: 1.4;
  }
}

/* -------------------- PILLARS -------------------- */
.pillars-overlay-section {
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  background: #050505;
}
.pillars-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pillars-floating-card {
  position: relative;
  background: #ffffff;
  color: #111111;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  z-index: 5;
  width: 90%;
  margin: 0 auto;
  margin-bottom: -100px;
}
.pillar-title {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}
.pillar-accent-line {
  width: 40px;
  height: 3px;
  background: #111111;
  margin-bottom: 20px;
}
.pillar-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #232121;
}
.pillars-image-backdrop {
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.pillars-image-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 991px) {
  .pillars-floating-card {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: -60px;
  }
}
@media (max-width: 576px) {
  .pillars-floating-card {
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
    width: 100%;
  }
  .pillars-image-backdrop {
    height: 300px;
    border-radius: 0 0 20px 20px;
  }
}

/* ----------------- -------------------- */
.static-bg-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-attachment: scroll !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-glass-overlay {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  padding: 80px 40px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 12, 0.75) 0%,
    rgba(5, 5, 5, 0.45) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-inner-content {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.parallax-text-column {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.parallax-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #dfba9d;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.parallax-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.parallax-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 600px;
  font-family: system-ui, sans-serif;
}
.parallax-metrics {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}
.metric-item {
  display: flex;
  flex-direction: column;
}
.metric-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #e51a66;
}
.metric-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.parallax-gallery-column {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-card {
  position: absolute;
  width: 220px;
  background: rgba(20, 20, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.4s ease;
}
.mini-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.mini-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.mini-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  display: block;
}
.card-top-left {
  top: 10%;
  left: 0;
  transform: rotate(-4deg);
}
.card-bottom-right {
  bottom: 10%;
  right: 0;
  transform: rotate(4deg);
}
.mini-card:hover {
  transform: scale(1.05) rotate(0deg);
  border-color: #e51a66;
  z-index: 10;
}
.mini-card:hover .mini-img-wrapper img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .parallax-inner-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .parallax-gallery-column {
    min-height: 350px;
  }
  .card-top-left {
    left: 10%;
  }
  .card-bottom-right {
    right: 10%;
  }
}
@media (max-width: 768px) {
  .static-bg-section {
    min-height: auto;
  }
  .parallax-glass-overlay {
    padding: 45px 20px;
    min-height: auto;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: linear-gradient(
      135deg,
      rgba(10, 10, 12, 0.85) 0%,
      rgba(5, 5, 5, 0.6) 100%
    );
  }
  .parallax-inner-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .parallax-lead {
    margin-bottom: 25px;
    font-size: 0.95rem;
  }
  .parallax-metrics {
    gap: 25px;
    padding-top: 20px;
  }
  .parallax-gallery-column {
    min-height: auto;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
  }
  .mini-card,
  .mini-card.card-top-left,
  .mini-card.card-bottom-right {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 48%;
    transform: none !important;
    padding: 8px;
    border-radius: 12px;
  }
  .mini-img-wrapper {
    aspect-ratio: 4 / 3;
  }
}

/* -------------------- PATHWAY -------------------- */
.curriculum-pathway-section {
  width: 100%;
  overflow: hidden;
  padding: 60px 40px;
}
.section-block {
  max-width: 1200px;
  margin: 0 auto;
}
.pathway-timeline {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.pathway-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0.05) 100%
  );
  transform: translateX(-50%);
  z-index: 1;
}
.pathway-node {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.pathway-node.reverse-layout {
  direction: rtl;
}
.pathway-node.reverse-layout .pathway-content {
  direction: ltr;
}
.pathway-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
}
.pathway-img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #151515;
}
.pathway-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.pathway-node:hover .pathway-img-wrapper img {
  transform: scale(1.05);
}
.node-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background: #e51a66;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(229, 26, 102, 0.3);
}
.pathway-node.reverse-layout .node-number {
  left: auto;
  right: -15px;
}
.pathway-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.pathway-phase {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #dfba9d;
  margin-bottom: 10px;
  font-weight: 700;
}
.pathway-content .module-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}
.pathway-content .module-desc {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 768px) {
  .curriculum-pathway-section {
    padding: 40px 20px;
  }
  .pathway-timeline {
    gap: 50px;
    margin-top: 40px;
  }
  .pathway-timeline::before {
    left: 20px;
    transform: none;
  }
  .pathway-node,
  .pathway-node.reverse-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    direction: ltr;
    padding-left: 50px;
  }
  .pathway-visual {
    aspect-ratio: 21 / 9;
  }
  .node-number,
  .pathway-node.reverse-layout .node-number {
    left: -45px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  .pathway-content .module-title {
    font-size: 1.35rem;
  }
}

/* -------------------- CTA -------------------- */
.cta-block {
  text-align: center;
  padding: 100px 30px;
  background: linear-gradient(145deg, #070707, #000000);
  border-radius: 60px 60px 0 0;
  margin-top: 40px;
}
.cta-heading {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 20px;
}
.cta-desc {
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.6);
}
.cta-btn {
  padding: 14px 42px;
  background: #e51a66;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(229, 26, 102, 0.3);
  color: white;
}
.cta-btn:hover {
  transform: scale(1.02);
  background: #ff2a78;
}

/* -------------------- MODAL -------------------- */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;

  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-overlay:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.modal-content {
  background: #0f0f12;
  border-radius: 48px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  float: right;
  font-size: 28px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
  line-height: 1;
  background: none;
  border: none;
}

.modal-close:hover {
  color: #e51a66;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 0;
}

.modal-title .accent {
  color: #e51a66;
  /* -webkit-text-stroke: 1.5px #f03c7e; */
}

.modal-status-text {
  margin: 15px 0;
  color: #aaa;
}

.modal-status-text.success {
  color: #28a745;
  font-weight: bold;
}

#registrationStage,
#otpStage {
  width: 100%;
}

#otpStage {
  display: none;
}

.enroll-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.enroll-form input {
  width: 100%;
  padding: 14px 20px;
  margin: 12px 0;
  background: #1a1a1f;
  border: 1px solid #2a2a2f;
  border-radius: 60px;
  color: white;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}

.enroll-form input:focus {
  border-color: #e51a66;
}

.submit-btn {
  width: 100%;
  background: #e51a66;
  border: none;
  padding: 14px;
  border-radius: 60px;
  font-weight: bold;
  margin-top: 15px;
  cursor: pointer;
  color: white;
  transition:
    background 0.3s ease,
    opacity 0.3s ease;
}

.submit-btn:hover {
  background: #ff2a78;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.resend-otp-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  color: #eadae0;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.resend-otp-link:hover {
  color: #e51a66;
}

.resend-otp-link:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.modal-content .coree {
  -webkit-text-stroke: 1.9px #c40c50;
}

@media (max-width: 600px) {
  .modal-content {
    padding: 30px 20px;
    border-radius: 32px;
    width: 92%;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .enroll-form input {
    padding: 12px 16px;
    font-size: 0.95rem;
    margin: 8px 0;
  }

  .submit-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
}

/* ------------------------------------- */
.smart-top-banner {
  position: fixed;
  top: 40px;
  left: 15px;
  right: 15px;
  background: rgba(20, 20, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 9998;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  font-family: system-ui, sans-serif;
}

.smart-top-banner {
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0.5s;
  opacity: 1;
  transform: translateY(0);
}

.smart-top-banner.hide-banner {
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  pointer-events: none;
}
.banner-badge {
  background: rgba(229, 26, 102, 0.15);
  color: #e51a66;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 20px;
  margin-top: 0px;
}
.banner-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 6px;
  flex-grow: 1;
  margin-right: 5px;
}
.banner-link {
  color: #dfba9d;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .smart-top-banner {
    max-width: 420px;
    left: auto;
    right: 25px;
    top: 125px;
  }
}

/* -------------------- MOBILE DRAWER -------------------- */
@media (max-width: 768px) {
  .smart-top-banner {
    margin-top: 10px;
  }
  .mobile-drawer-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }
  .mobile-drawer-sheet {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #0f0f12;
    border-radius: 30px 30px 0 0;
    padding: 24px 20px 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mobile-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
  .mobile-drawer-overlay.is-open .mobile-drawer-sheet {
    transform: translateY(-100%);
  }
  .drawer-drag-handle {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto 15px auto;
  }
  .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  .drawer-header h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0;
  }
  .drawer-close-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 28px;
    cursor: pointer;
  }
  .mobile-drawer-sheet p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .drawer-cta-btn {
    width: 100%;
    padding: 16px;
    background: #e51a66;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
  }
}
@media (min-width: 769px) {
  .mobile-drawer-overlay {
    display: none;
  }
}

/* -------------------- FLOATING FAB -------------------- */
.floating-haptic-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 10001;
  transition: transform 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.floating-haptic-fab:active {
  transform: scale(0.92);
}
.fab-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: fabRingPulse 2.5s infinite ease-out;
}
@keyframes fabRingPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* -------------------- TOAST -------------------- */
.enrollment-toast {
  position: fixed;
  bottom: -100px;
  left: 40px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 28px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease;
  backdrop-filter: blur(4px);
  background: rgba(15, 15, 18, 0.98);
}
.enrollment-toast.is-active {
  bottom: 40px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast-pulse-marker {
  width: 10px;
  height: 10px;
  background: #00ffaa;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.toast-pulse-marker::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #00ffaa;
  border-radius: 50%;
  animation: toastRadarPulse 2s infinite ease-out;
}
@keyframes toastRadarPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
.toast-content-wrapper {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-family: system-ui, sans-serif;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.toast-user-name {
  color: #23dc3ff1;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.toast-course-title {
  color: #dfba9d;
  font-weight: 700;
}
.toast-time-stamp {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 6px;
  font-weight: 400;
}
.toast-time-stamp::before {
  content: '•';
  margin-right: 6px;
  color: #e51a66;
}
@media (max-width: 676px) {
  .enrollment-toast {
    left: 16px;
    right: 16px;
    bottom: -60px;
    border-radius: 8px;
    padding: 8px 12px;
    min-height: auto;
    background: rgba(10, 10, 14, 0.96);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 26, 102, 0.25);
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  .enrollment-toast.is-active {
    bottom: 12px;
  }
  .toast-pulse-marker {
    width: 6px;
    height: 6px;
    margin-top: 5px;
  }
  .toast-content-wrapper {
    font-size: 0.8rem;
    line-height: 1.3;
    white-space: normal;
    display: block;
    flex: 1;
  }
  .toast-user-name {
    font-size: 0.8rem;
    font-weight: 600;
    display: inline;
  }
  .toast-course-title {
    font-size: 0.8rem;
    font-weight: 400;
    display: inline;
  }
  .toast-user-name::after {
    content: ' ';
  }
  .toast-time-stamp {
    display: inline-block;
    margin-left: 6px;
    margin-top: 0;
    font-size: 0.7rem;
    background: rgba(229, 26, 102, 0.15);
    padding: 1px 6px;
    border-radius: 4px;
    color: #ff9fbf;
    vertical-align: middle;
  }
  .toast-time-stamp::before {
    display: none;
  }
}

/* -------------------- MISC -------------------- */
.logo-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .logo-img {
    height: 32px;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.floating-shape {
  position: fixed;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
footer {
  background: #030303;
  padding: 50px 30px 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* -------------------- PARTICLE CANVAS -------------------- */
#cursor-particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}
/* ------------------------------  */

.input-error-state {
    border-color: #e51a66 !important;
    background: rgba(229, 26, 102, 0.03) !important;
}

.input-error-msg {
    color: #e51a66;
    font-size: 0.75rem;
    margin-top: -8px;
    margin-bottom: 12px;
    padding-left: 4px;
    text-align: left;
    display: block;
    font-weight: 500;
    animation: fadeInError 0.2s ease-out forwards;
}

@keyframes fadeInError {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.stage-hidden {
    display: none !important;
}


.submit-btn {
    transition: all 0.3s ease;
}

/* ---------  */
.info-value {
    color: #381b1b; 
    font-weight: 500;
}

.highlight-num {
    color: #e51a66; 
    font-weight: 700; 
    font-size: 1.15rem; 
}
