:root {
  --bg-dark-navy: #0a0f1f;
  --bg-black: #000000;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --accent-blue: #5da9e9;
  --accent-violet: #7c4dff;
  --text-white: #ffffff;
  --text-light-gray: #e0e0e0;
  --text-dark-gray: #212529;
  --text-muted-dark: #8b92a8;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-quote: "Merriweather", serif;
  --bg-color: var(--bg-dark-navy);
  --text-color: var(--text-light-gray);
  --card-bg: #0F142B;
  --header-bg: rgba(10, 15, 31, 0.9);
  --section-light-bg: var(--bg-light);
  --section-light-text: var(--text-dark-gray);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden; 
}
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden; 
  width: 100%;
}
body.page-loaded {
  opacity: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

span, div, section, article {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}
img:hover {
  transform: scale(1.02);
}
ul {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
  width: 100%;
}
.container--wide {
  max-width: 1400px;
}
.section {
  padding-block: 100px;
  overflow-x: hidden; 
}
.animate-on-scroll > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.section--dark {
  background-color: var(--bg-dark-navy);
  color: var(--text-light-gray);
}
.section--dark a {
  color: var(--text-light-gray);
}
.section--dark a:hover {
  color: var(--text-white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-white);
}
.section--light {
  background-color: var(--bg-light);
  color: var(--text-muted-dark);
}
.section--light a {
  color: var(--text-muted-dark);
}
.section--light a:hover {
  color: var(--text-dark-gray);
}
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
  color: var(--text-dark-gray);
}
.section__title {
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  margin-bottom: 48px;
  position: relative;
}
.section__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 3px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
  border-radius: 2px;
}
.section--dark .section__title::after {
  background: var(--text-light-gray);
}
.section--light .section__title::after {
  background: var(--text-dark-gray);
}
.section__title.is-visible::after {
  transform: translateX(-50%) scaleX(1);
}
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-violet);
  color: var(--text-white);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  top: 0;
}
.aethra-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  padding: 16px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}
.aethra-header.scrolled {
  background-color: var(--header-bg);
  backdrop-filter: blur(10px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
}
.aethra-header__wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aethra-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1102;
  padding: 2px 0;
}
.aethra-header__logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}
.aethra-header__name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-white);
}
.aethra-header__nav {
  margin-left: auto;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.aethra-header__list {
  display: flex;
  gap: 28px;
}
.aethra-header__link {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
  color: var(--text-light-gray);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.aethra-header__link:hover {
  color: var(--accent-blue);
  transform: translateY(-2px);
}
.aethra-header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.aethra-header__link:hover::after {
  width: 100%;
}
.aethra-header__toggle {
  display: none;
  background: transparent;
  border: 0;
  z-index: 1102;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 24px;
}
.aethra-header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.aethra-header__toggle-bar:nth-child(1) {
  top: 4px;
}
.aethra-header__toggle-bar:nth-child(2) {
  top: 11px;
}
.aethra-header__toggle-bar:nth-child(3) {
  bottom: 4px;
}
.aethra-header.nav-open .aethra-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.aethra-header.nav-open .aethra-header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.aethra-header.nav-open .aethra-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 2rem 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-dark-navy) 0%, var(--bg-black) 100%);
}
#hero-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 80px 40px currentColor;
}
.hero-shape.back {
  animation: drift 25s infinite linear alternate;
}
.hero-shape.fore {
  animation: drift 18s infinite linear alternate-reverse;
}
@keyframes drift {
  from {
    transform: translateY(50px) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  to {
    transform: translateY(-50px) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--accent-blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: clamp(0.78rem, 1.4vw, 1.05rem);
  margin-bottom: 24px;
  line-height: 1.3;
}
.hero__heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero__desc {
  max-width: 60ch;
  margin: 0 auto 32px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-light-gray);
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-family: var(--font-heading);
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
}
.btn:active {
  transform: translateY(-1px) scale(0.98);
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent-violet), #9d6bff);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
}
.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(124, 77, 255, 0.6);
  background: linear-gradient(135deg, #9d6bff, var(--accent-violet));
}
.btn--secondary {
  background-color: transparent;
  color: var(--text-light-gray);
  border-color: var(--accent-blue);
  position: relative;
  box-shadow: 0 4px 15px rgba(93, 169, 233, 0.2);
}
.btn--secondary:hover {
  box-shadow: 0 8px 30px rgba(93, 169, 233, 0.5);
  color: var(--text-white);
  border-color: var(--accent-violet);
  background: rgba(124, 77, 255, 0.1);
}
.about-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-split__content {
  max-width: 55ch;
}
.about-split__content h2 {
  text-align: left;
  margin-bottom: 24px;
}
.about-split__content h2::after {
  left: 0;
  transform-origin: left;
  transform: scaleX(0);
}
.about-split__content h2.is-visible::after {
  transform: scaleX(1);
}
.about-split__media img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bullets {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.bullets li {
  position: relative;
  padding-left: 24px;
}
.section--dark .bullets li::before {
  background: linear-gradient(45deg, var(--accent-blue), var(--accent-violet));
}
.section--light .bullets li::before {
  background: var(--accent-violet);
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 64px;
}
.counter-card {
  background: var(--text-white);
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent-violet);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 77, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.counter-card:hover::before {
  left: 100%;
}
.counter-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(124, 77, 255, 0.2);
}
.counters-grid.is-visible .counter-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.counters-grid.is-visible .counter-card:nth-child(1) {
  transition-delay: 0.1s;
}
.counters-grid.is-visible .counter-card:nth-child(2) {
  transition-delay: 0.2s;
}
.counters-grid.is-visible .counter-card:nth-child(3) {
  transition-delay: 0.3s;
}
.counters-grid.is-visible .counter-card:nth-child(4) {
  transition-delay: 0.4s;
}
.counter-card__number {
  font-size: 2.5rem;
  color: var(--accent-violet);
  margin-bottom: 8px;
}
.counter-card__title {
  font-size: 1rem;
  color: var(--text-muted-dark);
}
.read-more-link {
  margin-top: 24px;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px dotted transparent;
  transition: border-color 0.3s ease;
}
.section--light .read-more-link {
  color: var(--text-dark-gray);
}
.read-more-link:hover {
  border-bottom-color: var(--accent-violet);
}
.quotes {
  text-align: center;
}
.quote {
  max-width: 70ch;
  margin: 0 auto 48px;
}
.quote:last-child {
  margin-bottom: 0;
}
.quote blockquote {
  font-family: var(--font-quote);
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.5;
  margin-bottom: 16px;
}
.quote--animated blockquote span {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.event-card {
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.section--dark .event-card {
  background: linear-gradient(135deg, var(--bg-dark-navy), #0F142B);
  border-color: rgba(255, 255, 255, 0.1);
}
.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(93, 169, 233, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.event-card:hover::before {
  opacity: 1;
}
.event-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(124, 77, 255, 0.5);
}
.section--dark .event-card:hover {
  box-shadow: 0 12px 40px rgba(124, 77, 255, 0.4), 
              0 0 0 1px rgba(124, 77, 255, 0.3);
}
.event-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.event-card__title {
  font-size: 1.5rem;
}
.event-card__location {
  color: var(--text-white);
  font-family: var(--font-heading);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  border: 1px solid var(--accent-blue);
}
.event-card__desc {
  flex-grow: 1;
  margin-bottom: 24px;
}
.event-card__cta {
  margin-top: auto;
}
.event-card__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.chip {
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}
.section--dark .chip {
  background: rgba(93, 169, 233, 0.15);
  border: 1px solid rgba(93, 169, 233, 0.4);
  color: var(--accent-blue);
}
.chip:hover {
  transform: scale(1.05);
  background: rgba(93, 169, 233, 0.25);
  box-shadow: 0 4px 15px rgba(93, 169, 233, 0.3);
}
.events__cta {
  text-align: center;
  margin-top: 48px;
}
.join-build {
  text-align: center;
}
.join__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.section--light .join__sub {
  color: var(--text-muted-dark);
}
.join__roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 800px;
}
.jb-box {
  padding: 28px 20px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.jb-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.15), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  border-radius: 50%;
}
.jb-box:hover::before {
  width: 200px;
  height: 200px;
}
.section--light .jb-box {
  background: var(--text-white);
  border: 2px solid #e9ecef;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.section--light .jb-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 35px rgba(124, 77, 255, 0.15);
  border-color: var(--accent-violet);
}
.jb-box i {
  font-size: 2rem;
  color: var(--accent-violet);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.jb-box:hover i {
  transform: scale(1.2) rotateY(360deg);
  filter: drop-shadow(0 4px 10px rgba(124, 77, 255, 0.5));
}
.jb-box__label {
  font-family: var(--font-heading);
  font-weight: 700;
}
.section--light .jb-box__label {
  color: var(--text-dark-gray);
}
.join__utils {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  text-align: left;
}
.util-card {
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.util-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}
.util-card:hover::after {
  transform: scaleX(1);
}
.section--light .util-card {
  background-color: var(--text-white);
  border: 2px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.section--light .util-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(124, 77, 255, 0.3);
}
.util-card__head {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.util-card__desc {
  flex-grow: 1;
}
.util-card__links {
  margin-top: 16px;
  padding-top: 16px;
}
.section--light .util-card__links {
  border-top: 1px solid #e9ecef;
}
.dotted-link {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
  font-weight: 700;
}
.section--light .dotted-link {
  color: var(--text-dark-gray);
}
.connect-card {
  background: linear-gradient(135deg, var(--bg-dark-navy), #0F142B);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.connect-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.2), transparent 60%);
  opacity: 0;
  transition: all 0.6s ease;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.connect-card:hover::before {
  opacity: 1;
}
.connect-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(124, 77, 255, 0.4), 0 0 40px rgba(93, 169, 233, 0.2);
  border-color: rgba(124, 77, 255, 0.7);
}.connect__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1000px;
  margin-inline: auto;
}
.connect-card {
.connect-form input {
  width: 100%;
  padding: 18px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.connect-form input:focus {
  outline: none;
  border-color: var(--accent-violet);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.3), 0 8px 20px rgba(124, 77, 255, 0.4);
  transform: translateY(-3px);
}
.connect-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.connect-form input:focus::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.connect-card__title {
  font-size: 1.75rem;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.connect-card__desc {
  color: var(--text-light-gray);
  line-height: 1.8;
  margin-bottom: 12px;
}
.connect-card .btn {
  width: 100%;
  margin-top: auto;
  font-weight: 600;
  padding: 16px;
  font-size: 1.05rem;
}
.connect-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}
.connect-form input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-family: var(--font-body);
}
.connect-form .btn {
  margin-top: auto;
}
.connect__social {
  text-align: center;
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: rgba(124, 77, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(124, 77, 255, 0.2);
}
.slabel {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--text-light-gray);
  font-weight: 600;
}
.slinks {
  display: flex;
  gap: 24px;
}
.slinks a {
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}
.slinks a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  transition: transform 0.3s ease;
}
.slinks a:hover {
  color: var(--accent-violet);
  background: rgba(124, 77, 255, 0.1);
}
.slinks a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.vision {
  text-align: center;
  padding: 80px 0;
}
.section--dark.vision {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-black);
}
.section--dark.vision::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 77, 255, 0.2), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}
.vision .container {
  position: relative;
  z-index: 1;
}
.vision-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 64px;
  text-align: left;
}
.vision-item {
  background: rgba(15, 20, 43, 0.7);
  border: 1px solid rgba(124, 77, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.vision-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.15), rgba(93, 169, 233, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.vision-item::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}
.vision-item:hover::before {
  opacity: 1;
}
.vision-item:hover::after {
  opacity: 1;
}
.vision-item:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(124, 77, 255, 0.4), 0 0 50px rgba(93, 169, 233, 0.3);
}
.vision-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.vision-item:hover .vision-number {
  transform: scale(1.2) rotate(5deg);
}
.vision-item h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-white);
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.vision-item .vision__desc {
  max-width: 100%;
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-light-gray);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .aethra-header {
    position: sticky;
    top: 0;
  }
  .aethra-header__toggle {
    display: block;
  }
  .aethra-header__nav {
    position: fixed;
    inset: 0 0 0 0;
    background: var(--bg-dark-navy);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    z-index: 1101;
    overflow-y: auto;
  }
  .aethra-header.nav-open .aethra-header__nav {
    transform: translateX(0);
  }
  .aethra-header__list {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .aethra-header__list li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .aethra-header.nav-open .aethra-header__list li {
    opacity: 1;
    transform: translateY(0);
  }
  .aethra-header.nav-open .aethra-header__list li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .aethra-header.nav-open .aethra-header__list li:nth-child(2) {
    transition-delay: 0.15s;
  }
  .aethra-header.nav-open .aethra-header__list li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .aethra-header.nav-open .aethra-header__list li:nth-child(4) {
    transition-delay: 0.25s;
  }
  .aethra-header__link {
    font-size: 1.8rem;
  }
  .about-split__grid {
    grid-template-columns: 1fr;
  }
  .about-split__media {
    order: -1;
  }
  .connect__grid {
    grid-template-columns: 1fr;
  }
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 25px rgba(124, 77, 255, 0.4);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.back-to-top::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.back-to-top:hover::before {
  opacity: 1;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 35px rgba(93, 169, 233, 0.6);
}
.back-to-top:active {
  transform: translateY(-6px) scale(1.05);
}
.back-to-top i {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.back-to-top:hover i {
  transform: translateY(-3px);
}
.back-to-top:hover {
  background-color: var(--accent-blue);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(93, 169, 233, 0.4);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-shape {
    animation: none;
    opacity: 0.2;
  }
  body,
  .counter-card,
  .aethra-header {
    transition: none;
  }
  .animate-on-scroll > * {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
  .back-to-top:hover {
    transform: translateY(0);
  }
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.scroll-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  animation: scrollBounce 1.5s infinite;
  opacity: 0.6;
}
.scroll-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.scroll-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px);
    opacity: 1;
  }
}
.event-card--featured {
  position: relative;
  border: 2px solid var(--accent-violet);
}
.event-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  color: var(--text-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
  animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.event-highlights {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-blue);
  font-size: 0.95rem;
  font-weight: 600;
}
.highlight-item i {
  font-size: 1.2rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
}
.benefit-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--text-white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}
.benefit-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.05), rgba(93, 169, 233, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.benefit-card:hover::before {
  transform: scaleX(1);
}
.benefit-card:hover::after {
  opacity: 1;
}
.benefit-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(124, 77, 255, 0.2);
}
.benefit-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.15), rgba(93, 169, 233, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.benefit-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.benefit-icon i {
  font-size: 2.5rem;
  color: var(--accent-violet);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}
.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(15deg);
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.25), rgba(93, 169, 233, 0.25));
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.3);
}
.benefit-card:hover .benefit-icon::before {
  opacity: 0.1;
}
.benefit-card:hover .benefit-icon i {
  transform: scale(1.25) rotate(-15deg);
  color: var(--accent-violet);
}
.benefit-card h3 {
  color: var(--text-dark-gray);
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.benefit-card p {
  color: var(--text-muted-dark);
  line-height: 1.8;
  font-size: 1.05rem;
}
.counter-card i {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.counter-card:hover i {
  transform: scale(1.2) rotateY(360deg);
}
/* ============================================
   INSTAGRAM FEED SECTION - PREMIUM POSTS
   ============================================ */
.instagram-feed-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.instagram-feed-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle at center, rgba(131, 58, 180, 0.15), rgba(124, 77, 255, 0.1), transparent 70%);
  pointer-events: none;
  animation: pulse 10s ease-in-out infinite;
  filter: blur(40px);
}
.instagram-feed-section .section__title {
  position: relative;
  z-index: 1;
}
.instagram-feed-section .section__subtitle {
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--text-muted-dark);
  font-size: 1.15rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.instagram-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.instagram-post-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 2px solid transparent;
  animation: scaleIn 0.6s ease-out backwards;
}
.instagram-post-card:nth-child(1) { animation-delay: 0.1s; }
.instagram-post-card:nth-child(2) { animation-delay: 0.2s; }
.instagram-post-card:nth-child(3) { animation-delay: 0.3s; }
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.instagram-post-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(131, 58, 180, 0.4);
  border-color: rgba(131, 58, 180, 0.3);
}
.instagram-post-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.instagram-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.instagram-post-card:hover .instagram-post-image img {
  transform: scale(1.15);
}
.instagram-post-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.instagram-post-card:hover .instagram-post-overlay {
  opacity: 1;
}
.instagram-post-stats {
  display: flex;
  gap: 1.5rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}
.instagram-post-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.instagram-post-stats i {
  font-size: 1.2rem;
}
.instagram-post-content {
  padding: 1.5rem;
}
.instagram-post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.instagram-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.instagram-post-date {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}
.instagram-post-caption {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
}
.instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3rem;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 30px rgba(131, 58, 180, 0.4);
  position: relative;
  overflow: hidden;
}
.instagram-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FCAF45 0%, #FD1D1D 50%, #833AB4 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.instagram-cta:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 15px 50px rgba(131, 58, 180, 0.6);
}
.instagram-cta:hover::before {
  opacity: 1;
}
.instagram-cta i, .instagram-cta span {
  position: relative;
  z-index: 1;
}
.instagram-cta i:first-child {
  font-size: 1.6rem;
  animation: float 3s ease-in-out infinite;
}
}
.instagram-cta:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 40px rgba(131, 58, 180, 0.6);
}
@media (max-width: 768px) {
  .instagram-posts-grid {
    grid-template-columns: 1fr;
  }
  .instagram-post-image {
    height: 280px;
  }
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  position: relative;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.team-card:hover::before {
  transform: scaleX(1);
}
.team-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(124, 77, 255, 0.4);
}
.team-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: grayscale(20%);
}
.team-card:hover .team-card__image img {
  transform: scale(1.15) rotate(2deg);
  filter: grayscale(0%);
}
.team-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.95), rgba(93, 169, 233, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(5px);
}
.team-card:hover .team-card__overlay {
  opacity: 1;
}
.team-card__socials {
  display: flex;
  gap: 1.2rem;
}
.team-card__socials a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.team-card__socials a:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2) rotate(10deg);
  border-color: rgba(255, 255, 255, 0.8);
}
.team-card__content {
  padding: 2rem 1.5rem;
}
.team-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}
.team-card:hover .team-card__name {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-card__role {
  font-size: 1rem;
  color: var(--accent-violet);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.team-card__bio {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}
/* ============================================
   LEADERSHIP TEAM - PREMIUM 3D FLIP CARDS
   ============================================ */
.leadership-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  perspective: 1000px;
}
.leadership-card {
  height: 450px;
  position: relative;
  cursor: pointer;
}
.leadership-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
}
.leadership-card:hover .leadership-card__inner {
  transform: rotateY(180deg);
}
.leadership-card__front,
.leadership-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
}
.leadership-card__front {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(124, 77, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.leadership-card__back {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.95), rgba(93, 169, 233, 0.95));
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(124, 77, 255, 0.4);
}
.leadership-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.leadership-card__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.leadership-card:hover .leadership-card__glow {
  opacity: 1;
}
.leadership-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(30%) brightness(0.9);
}
.leadership-card__image--placeholder {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(93, 169, 233, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(124, 77, 255, 0.2);
}
.leadership-card:hover .leadership-card__image {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
}
.leadership-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(124, 77, 255, 0.5);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.leadership-card__info {
  padding: 2rem;
  text-align: center;
}
.leadership-card__name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.leadership-card__role {
  font-size: 1rem;
  color: var(--accent-violet);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.leadership-card__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.leadership-card__socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.leadership-card__socials .social-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(124, 77, 255, 0.1);
  border: 2px solid rgba(124, 77, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-violet);
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.leadership-card__socials .social-icon:hover {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  color: white;
  transform: translateY(-5px) rotate(5deg) scale(1.1);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(124, 77, 255, 0.4);
}
.leadership-card__bio {
  font-size: 1.1rem;
  color: white;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 768px) {
  .container {
    padding-inline: 1.5rem;
  }
  .section {
    padding-block: 60px;
  }
  .leadership-team-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
  }
  .leadership-card {
    height: auto;
    min-height: 420px;
  }
  .leadership-card__image-wrapper {
    height: 260px;
  }
  .leadership-card__name {
    font-size: 1.3rem !important;
  }
  .leadership-card__role {
    font-size: 0.95rem !important;
  }
}
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.mentor-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--card-bg);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.mentor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 77, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.mentor-card:hover::before {
  left: 100%;
}
.mentor-card:hover {
  border-color: var(--accent-violet);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(124, 77, 255, 0.3);
}
.mentor-card__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.3);
}
.mentor-card:hover .mentor-card__icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(124, 77, 255, 0.5);
}
.mentor-card h3 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.mentor-card p {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}
.story-content {
  max-width: 900px;
  margin: 0 auto;
}
.story-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted-dark);
  margin-bottom: 1.5rem;
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  padding-left: 50px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-violet), var(--accent-blue));
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.5);
}
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  animation: fadeInLeft 0.6s ease-out backwards;
}
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.timeline-marker {
  position: absolute;
  left: -38px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-violet);
  border: 4px solid var(--bg-color);
  box-shadow: 0 0 0 4px var(--accent-violet), 0 0 20px rgba(124, 77, 255, 0.6);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px var(--accent-violet), 0 0 20px rgba(124, 77, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px var(--accent-violet), 0 0 30px rgba(124, 77, 255, 0.8);
  }
}
.timeline-content {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 4px solid var(--accent-violet);
}
.timeline-content:hover {
  transform: translateX(15px) scale(1.02);
  box-shadow: 0 15px 50px rgba(124, 77, 255, 0.3);
  border-left-width: 6px;
}
.timeline-date {
  font-size: 0.9rem;
  color: var(--accent-violet);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.timeline-content h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}
.timeline-content p {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--card-bg);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(124, 77, 255, 0.2);
}
.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: transform 0.3s ease;
}
.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}
.value-card h3 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.value-card p {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}
.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.impact-stat {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.impact-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.3);
}
.impact-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}
.impact-label {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 500;
}
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.featured-post__image {
  width: 100%;
  height: 100%;
}
.featured-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-post__content {
  padding: 3rem 3rem 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.post-category {
  background: var(--accent-violet);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}
.post-date {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
}
.featured-post__content h2 {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  line-height: 1.3;
}
.featured-post__content p {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  position: relative;
}
.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.blog-card:hover::after {
  transform: scaleX(1);
}
.blog-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(124, 77, 255, 0.4);
}
.blog-card__image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: brightness(0.9);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.2) rotate(2deg);
  filter: brightness(1);
}
.blog-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-violet);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
  backdrop-filter: blur(10px);
  animation: slideInRight 0.6s ease-out;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.blog-card__content {
  padding: 1.5rem;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}
.post-date, .post-read-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.post-read-time i {
  font-size: 0.9rem;
}
.blog-card__content h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  line-height: 1.4;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card__content h3 {
  color: var(--accent-violet);
}
.blog-card__content p {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-violet);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-card__link:hover {
  gap: 0.75rem;
  color: var(--accent-blue);
}
@media (max-width: 768px) {
  .featured-post {
    grid-template-columns: 1fr;
  }
  .featured-post__content {
    padding: 2rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   NEWSLETTER PAGE - PREMIUM ANIMATIONS
   ============================================ */
.newsletter-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.newsletter-form {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.newsletter-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  transition: left 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.newsletter-form::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(124, 77, 255, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.newsletter-form:hover::before {
  left: 0;
}
.newsletter-form:hover::after {
  opacity: 1;
}
.newsletter-form:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 70px rgba(124, 77, 255, 0.3);
}
.form-group {
  margin-bottom: 1.8rem;
  animation: slideInUp 0.6s ease-out backwards;
}
.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-group label {
  display: block;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.form-group:focus-within label {
  color: var(--accent-violet);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(124, 77, 255, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--bg-color);
  color: var(--text-color);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-violet);
  box-shadow: 0 0 0 6px rgba(124, 77, 255, 0.15), 
              0 8px 20px rgba(124, 77, 255, 0.2);
  transform: translateY(-4px) scale(1.01);
}
.form-group input:hover,
.form-group select:hover {
  border-color: rgba(124, 77, 255, 0.4);
  transform: translateY(-2px);
}
.checkbox-group {
  margin-top: 1.8rem;
  animation: slideInUp 0.6s ease-out 0.4s backwards;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}
.checkbox-label:hover {
  color: var(--text-color);
  background: rgba(124, 77, 255, 0.05);
  transform: translateX(5px);
}
.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent-violet);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.checkbox-label input[type="checkbox"]:checked {
  transform: scale(1.2) rotate(10deg);
}
.btn--large {
  width: 100%;
  padding: 1.3rem 2rem;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out 0.5s backwards;
}
.btn--large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn--large:hover::before {
  opacity: 1;
}
.btn--large:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 40px rgba(124, 77, 255, 0.5);
}
.btn--large:active {
  transform: translateY(-2px) scale(1.02);
}
.btn--large i {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn--large:hover i {
  transform: translateX(5px);
}
.newsletter-benefits h3 {
  color: var(--text-color);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
}
.benefit-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  padding: 1.8rem;
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent;
  border: 2px solid transparent;
  animation: fadeInRight 0.6s ease-out backwards;
}
.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.benefit-item:hover {
  background: rgba(124, 77, 255, 0.08);
  transform: translateX(15px) scale(1.03);
  border-color: rgba(124, 77, 255, 0.3);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.2);
}
.benefit-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 20px rgba(124, 77, 255, 0.4);
  position: relative;
}
.benefit-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.benefit-item:hover .benefit-icon {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 10px 35px rgba(124, 77, 255, 0.6);
}
.benefit-item:hover .benefit-icon::before {
  opacity: 1;
}
.benefit-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}
.benefit-item:hover h4 {
  color: var(--accent-violet);
}
.benefit-item p {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}
.newsletter-archive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.archive-card {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(124, 77, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s ease-out backwards;
}
.archive-card:nth-child(1) { animation-delay: 0.1s; }
.archive-card:nth-child(2) { animation-delay: 0.2s; }
.archive-card:nth-child(3) { animation-delay: 0.3s; }
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.archive-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.archive-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(124, 77, 255, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.archive-card:hover::before {
  transform: scaleX(1);
}
.archive-card:hover::after {
  opacity: 1;
}
.archive-card:hover {
  border-color: var(--accent-violet);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(124, 77, 255, 0.3);
}
.archive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.archive-issue {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.archive-card:hover .archive-issue {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 77, 255, 0.5);
}
.archive-date {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
}
.archive-card h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  line-height: 1.4;
}
.archive-card p {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.archive-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-violet);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.archive-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.archive-link:hover {
  gap: 1rem;
  color: var(--accent-blue);
  transform: translateX(5px);
}
.archive-link:hover::after {
  width: 100%;
}
.archive-link i {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.archive-link:hover i {
  transform: translateX(5px) scale(1.2);
}
.social-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.social-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.social-btn:hover::before {
  width: 300px;
  height: 300px;
}
.social-btn i {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}
.social-btn:hover i {
  transform: scale(1.3) rotate(10deg);
}
.social-btn-instagram {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
  box-shadow: 0 6px 20px rgba(131, 58, 180, 0.3);
}
.social-btn-instagram:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(131, 58, 180, 0.6);
}
.social-btn-linkedin {
  background: #0077B5;
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);
}
.social-btn-linkedin:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 119, 181, 0.6);
}
@media (max-width: 968px) {
  .newsletter-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.handbook-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.handbook-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--card-bg);
  border-radius: 50px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.handbook-nav-item:hover {
  border-color: var(--accent-violet);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 77, 255, 0.2);
}
.handbook-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.handbook-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.handbook-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.2);
}
.handbook-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1.5rem;
}
.handbook-card h3 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.handbook-card p {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}
.handbook-card a {
  color: var(--accent-violet);
  text-decoration: underline;
}
.conduct-content {
  max-width: 900px;
  margin: 2rem auto 0;
}
.conduct-principle {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.conduct-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  min-width: 80px;
}
.conduct-principle h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}
.conduct-principle p {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.guide-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--accent-violet);
}
.guide-card h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.guide-card ul {
  list-style: none;
  padding: 0;
}
.guide-card li {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 2;
  padding-left: 0.5rem;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.resource-category {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
}
.resource-category h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.resource-category ul {
  list-style: none;
  padding: 0;
}
.resource-category li {
  margin-bottom: 0.75rem;
}
.resource-category a {
  color: var(--accent-violet);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.resource-category a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}
.faq-list {
  max-width: 900px;
  margin: 2rem auto 0;
}
.faq-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(124, 77, 255, 0.2);
}
.faq-item h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}
.faq-item p {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
}
.faq-item a {
  color: var(--accent-violet);
  text-decoration: underline;
}

/* ============================================
   PREMIUM ULTRA-MODERN FOOTER
   ============================================ */
.footer-premium {
  background: radial-gradient(ellipse at top, rgba(124, 77, 255, 0.05) 0%, transparent 50%), 
              linear-gradient(180deg, rgba(15, 20, 43, 0.98) 0%, rgba(10, 15, 31, 1) 100%);
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-violet), var(--accent-blue), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.footer-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 20% 50%, rgba(124, 77, 255, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(93, 169, 233, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-cta {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.1) 0%, rgba(93, 169, 233, 0.1) 100%);
  border-bottom: 1px solid rgba(124, 77, 255, 0.1);
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 77, 255, 0.5), transparent);
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(124, 77, 255, 0.15);
  border: 1px solid rgba(124, 77, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-violet);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-title .gradient-text {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  color: var(--text-muted-dark);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.newsletter-form-enhanced {
  display: flex;
  gap: 0.75rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(124, 77, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.newsletter-input-enhanced {
  flex: 1;
  padding: 1.1rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: 10px;
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.newsletter-input-enhanced::placeholder {
  color: var(--text-muted-dark);
}

.newsletter-input-enhanced:focus {
  outline: none;
  background: rgba(124, 77, 255, 0.05);
}

.newsletter-btn-enhanced {
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-heading);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.newsletter-btn-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.newsletter-btn-enhanced:hover::before {
  left: 100%;
}

.newsletter-btn-enhanced:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.5);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted-dark);
  font-size: 0.9rem;
}

.cta-feature i {
  color: var(--accent-violet);
  font-size: 1.1rem;
}

.footer-main-premium {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(124, 77, 255, 0.1);
  margin-bottom: 2.5rem;
  gap: 3rem;
}

.footer-brand-premium {
  flex: 1;
  max-width: 400px;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.brand-logo {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(124, 77, 255, 0.3);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.brand-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.brand-stat {
  display: flex;
  flex-direction: column;
}

.brand-stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-violet);
}

.brand-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav-premium {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-nav-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  border-radius: 2px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav-link {
  color: var(--text-muted-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  width: fit-content;
}

.footer-nav-link::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid var(--accent-violet);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-nav-link:hover::before {
  opacity: 1;
}

.footer-nav-link:hover {
  color: var(--accent-violet);
  transform: translateX(6px);
}

.footer-bottom-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(124, 77, 255, 0.08);
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-copyright {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
}

.footer-made-with {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted-dark);
  font-size: 0.85rem;
}

.heart-icon {
  color: #ff4757;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.1); }
  20%, 40% { transform: scale(1); }
}

.footer-social-premium {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link-premium {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124, 77, 255, 0.08);
  border: 1px solid rgba(124, 77, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-gray);
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-link-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link-premium:hover::before {
  opacity: 1;
}

.social-link-premium i {
  position: relative;
  z-index: 1;
}

.social-link-premium:hover {
  color: white;
  transform: translateY(-4px) scale(1.05);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(124, 77, 255, 0.4);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-link {
  color: var(--text-muted-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-violet);
  transition: width 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--accent-violet);
}

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-separator {
  width: 1px;
  height: 16px;
  background: rgba(124, 77, 255, 0.2);
}

@media (max-width: 1200px) {
  .footer-nav-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 968px) {
  .footer-cta {
    padding: 4rem 1.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .newsletter-form-enhanced {
    flex-direction: column;
    max-width: 100%;
  }

  .newsletter-input-enhanced,
  .newsletter-btn-enhanced {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-brand-premium {
    max-width: 100%;
  }

  .footer-nav-premium {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-premium {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-left {
    align-items: center;
  }

  .footer-social-premium {
    order: -1;
  }
}

@media (max-width: 640px) {
  .footer-nav-premium {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-separator {
    display: none;
  }
}

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.25rem;
            background: rgba(124, 77, 255, 0.15);
            border: 1px solid rgba(124, 77, 255, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-violet);
            margin-bottom: 1.5rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .cta-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .cta-title .gradient-text {
            background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-subtitle {
            color: var(--text-muted-dark);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .newsletter-form-enhanced {
            display: flex;
            gap: 0.75rem;
            max-width: 550px;
            margin: 0 auto 2rem;
            background: rgba(255, 255, 255, 0.02);
            padding: 0.5rem;
            border-radius: 14px;
            border: 1px solid rgba(124, 77, 255, 0.15);
            backdrop-filter: blur(10px);
        }

        .newsletter-input-enhanced {
            flex: 1;
            padding: 1.1rem 1.5rem;
            border: none;
            background: transparent;
            border-radius: 10px;
            color: var(--text-white);
            font-size: 0.95rem;
            font-family: var(--font-body);
            transition: all 0.3s ease;
        }

        .newsletter-input-enhanced::placeholder {
            color: var(--text-muted-dark);
        }

        .newsletter-input-enhanced:focus {
            outline: none;
            background: rgba(124, 77, 255, 0.05);
        }

        .newsletter-btn-enhanced {
            padding: 1.1rem 2.5rem;
            background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-family: var(--font-heading);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .newsletter-btn-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .newsletter-btn-enhanced:hover::before {
            left: 100%;
        }

        .newsletter-btn-enhanced:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 10px 30px rgba(124, 77, 255, 0.5);
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted-dark);
            font-size: 0.9rem;
        }

        .cta-feature i {
            color: var(--accent-violet);
            font-size: 1.1rem;
        }

        /* Main Footer Content - Horizontal Layout */
        .footer-main-premium {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
            position: relative;
            z-index: 1;
        }

        /* Top Section - Brand + Navigation */
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(124, 77, 255, 0.1);
            margin-bottom: 2.5rem;
            gap: 3rem;
        }

        .footer-brand-premium {
            flex: 1;
            max-width: 400px;
        }

        .brand-logo-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .brand-logo {
            width: 55px;
            height: 55px;
            border-radius: 14px;
            box-shadow: 0 4px 20px rgba(124, 77, 255, 0.3);
        }

        .brand-name {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .brand-tagline {
            color: var(--text-muted-dark);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .brand-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .brand-stat {
            display: flex;
            flex-direction: column;
        }

        .brand-stat-number {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-violet);
        }

        .brand-stat-label {
            font-size: 0.8rem;
            color: var(--text-muted-dark);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Navigation Columns - Horizontal */
        .footer-nav-premium {
            flex: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }

        .footer-nav-column {
            display: flex;
            flex-direction: column;
        }

        .footer-nav-title {
            font-family: var(--font-heading);
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 1.25rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .footer-nav-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
            border-radius: 2px;
        }

        .footer-nav-links {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .footer-nav-link {
            color: var(--text-muted-dark);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            width: fit-content;
        }

        .footer-nav-link::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 4px solid var(--accent-violet);
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-nav-link:hover::before {
            opacity: 1;
        }

        .footer-nav-link:hover {
            color: var(--accent-violet);
            transform: translateX(6px);
        }

        /* Bottom Section */
        .footer-bottom-premium {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(124, 77, 255, 0.08);
        }

        .footer-bottom-left {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-copyright {
            color: var(--text-muted-dark);
            font-size: 0.9rem;
        }

        .footer-made-with {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted-dark);
            font-size: 0.85rem;
        }

        .heart-icon {
            color: #ff4757;
            animation: heartbeat 1.5s infinite;
        }

        /* Social Links - Horizontal */
        .footer-social-premium {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .social-link-premium {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(124, 77, 255, 0.08);
            border: 1px solid rgba(124, 77, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light-gray);
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .social-link-premium::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-link-premium:hover::before {
            opacity: 1;
        }

        .social-link-premium i {
            position: relative;
            z-index: 1;
        }

        .social-link-premium:hover {
            color: white;
            transform: translateY(-4px) scale(1.05);
            border-color: transparent;
            box-shadow: 0 8px 25px rgba(124, 77, 255, 0.4);
        }

        /* Legal Links - Horizontal */
        .footer-legal {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-legal-link {
            color: var(--text-muted-dark);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-legal-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-violet);
            transition: width 0.3s ease;
        }

        .footer-legal-link:hover {
            color: var(--accent-violet);
        }

        .footer-legal-link:hover::after {
            width: 100%;
        }

        /* Separator */
        .footer-separator {
            width: 1px;
            height: 16px;
            background: rgba(124, 77, 255, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-nav-premium {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 968px) {
            .footer-cta {
                padding: 4rem 1.5rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .newsletter-form-enhanced {
                flex-direction: column;
                max-width: 100%;
            }

            .newsletter-input-enhanced,
            .newsletter-btn-enhanced {
                width: 100%;
            }

            .footer-top {
                flex-direction: column;
            }

            .footer-brand-premium {
                max-width: 100%;
            }

            .footer-nav-premium {
                width: 100%;
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-bottom-premium {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-left {
                align-items: center;
            }

            .footer-social-premium {
                order: -1;
            }
        }

        @media (max-width: 640px) {
            .footer-nav-premium {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .brand-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-features {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-legal {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-separator {
                display: none;
            }
        }

