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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  overflow-x: clip;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100%;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 15%, rgba(14, 165, 164, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(14, 165, 164, 0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

:root {
  --bg: #f0fafa;
  --surface: #ffffff;
  --border: rgba(14, 165, 164, 0.13);
  --border-hover: rgba(14, 165, 164, 0.35);
  --text-primary: #062a2a;
  --text-secondary: #2d5a5a;
  --text-muted: #5a8888;
  --accent: #0ea5a4;
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;
}


/* ═══════════════════════════════════════════
   SHARED ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

@keyframes shimmerLine {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}


/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(14, 165, 164, 0.15);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 25px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 56px;
  transform: translateY(2px);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.03));
}

.logo:hover img {
  transform: translateY(2px) scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  background: transparent !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0ea5a4;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0ea5a4;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
  opacity: 1;
}

.apply-btn-mobile {
  display: none;
}

.apply-btn {
  background: rgba(6, 109, 109, 0.08);
  color: #0b9090;
  border: 1px solid rgba(14, 165, 164, 0.2);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #0ea5a4;
  color: #ffffff;
  border-color: #0ea5a4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 164, 0.25);
}

.nav-backdrop {
  display: none;
}

.navbar {
  animation: navFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ═══════════════════════════════════════════
   NAVBAR MOBILE RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 64px;
  }

  .logo img {
    height: 48px;
  }

  /* ── Styled Solid Drawer ── */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    border-left: 4px solid #0ea5a4;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px 40px;
    z-index: 3000;
    gap: 30px;
    transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    overflow: hidden;
    pointer-events: all;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  /* ── Refined Navigation Links ── */
  .nav-links a {
    font-size: 2.2rem;
    font-weight: 800;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    color: #0f172a;
    background: transparent !important;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    border-bottom: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #0ea5a4;
  }

  .nav-links a.active::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #0ea5a4;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(14, 165, 164, 0.5);
  }

  .nav-links a::after {
    display: none !important;
  }

  /* ── Styled Apply Button ── */
  .apply-btn-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5a4 0%, #2dd4bf 100%) !important;
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
    transition: all 0.3s ease !important;
  }

  .apply-btn-mobile:active {
    transform: scale(0.97);
  }

  /* Instant appearance for links (animations removed as per user preference) */
  .nav-links.open a,
  .nav-links.open .apply-btn-mobile {
    opacity: 1;
    transform: none;
  }

  .nav-links.open a:nth-child(1) {
    animation-delay: 0.15s;
  }

  .nav-links.open a:nth-child(2) {
    animation-delay: 0.22s;
  }

  .nav-links.open a:nth-child(3) {
    animation-delay: 0.29s;
  }

  .nav-links.open a:nth-child(4) {
    animation-delay: 0.36s;
  }

  .nav-links.open a:nth-child(5) {
    animation-delay: 0.43s;
  }

  .nav-links.open .apply-btn-mobile {
    animation-delay: 0.55s;
  }

  @keyframes drawerItemReveal {
    to {
      opacity: 1;
      transform: translate(0, 0);
    }
  }

  /* ── Hamburger Icon Refinement ── */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3100;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e293b;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
  }

  .hamburger span:nth-child(1) {
    transform: translateY(-7px);
  }

  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }

  .hamburger span:nth-child(3) {
    transform: translateY(7px);
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    background: #0ea5a4;
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scale(0.2);
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    background: #0ea5a4;
  }

  /* ── UI Backdrop ── */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 2500;
  }

  .nav-backdrop.visible {
    display: block;
  }

  .apply-btn {
    display: none !important;
  }
}

.hamburger {
  display: none;
}


/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
/* Hero bottom pe 14px padding add karo */
.hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10%;
  padding-bottom: 14px;
}



.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://i.pinimg.com/736x/a4/2f/06/a42f067858d8c40fbaff10ba68757978.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.06);
  opacity: 0;
  animation: heroBgReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
  transition: transform 12s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.10);
}

@keyframes heroBgReveal {
  0% {
    opacity: 0;
    transform: scale(1.10);
  }

  100% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(3, 18, 18, 0.82) 0%,
      rgba(5, 28, 28, 0.74) 40%,
      rgba(6, 36, 36, 0.68) 70%,
      rgba(3, 18, 18, 0.78) 100%);
  z-index: 1;
}

.hero-overlay-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 2;
}

.hero-center {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 28px 20px;
  max-width: 820px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(13, 207, 206, 0.12);
  border: 1px solid rgba(13, 207, 206, 0.38);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #6ee7e7;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: heroBadgeIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

@keyframes heroBadgeIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.88);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-badge-dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: pulse 1.8s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  opacity: 0;
  animation: heroTitleIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-white {
  display: inline;
  background: linear-gradient(90deg,
      #ffffff 0%,
      #ffffff 30%,
      #7ed8d8 42%,
      #e0fafa 48%,
      #b8f0f0 54%,
      #ffffff 66%,
      #ffffff 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 3s linear infinite;
}

@keyframes titleShimmer {
  0% {
    background-position: 150% center;
  }

  100% {
    background-position: -150% center;
  }
}

.hero-title-float {
  display: inline-block;
  background: linear-gradient(135deg, #0dcfce 0%, #38bdf8 55%, #0ea5a4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 5s ease infinite, heroFloat 4s ease-in-out 1.6s infinite;
}

.hero-title-float-2 {
  animation-delay: 0s, 2s;
  animation-duration: 5s, 4.5s;
}

@keyframes gradShift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-subtitle {
  font-size: clamp(0.80rem, 1.2vw, 0.6rem);
  color: rgb(255, 255, 255);
  line-height: 1.80;
  width: 580px;
  max-width: 90%;
  margin: 0 auto 24px;
  text-align: center;
  opacity: 0;
  animation: heroFadeUp 0.75s ease 0.85s forwards;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.75s ease 1s forwards;
}

.btn-primary {
  padding: 13px 34px;
  background: #0ea5a4;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 28px rgba(14, 165, 164, 0.52);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: #0b9090;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(14, 165, 164, 0.60);
}

.btn-secondary {
  padding: 13px 34px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 0;
  margin-bottom: 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
  opacity: 0;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  stroke: #0dcfce;
  flex-shrink: 0;
}

.trust-from-left {
  animation: trustFromLeft 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
}

@keyframes trustFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px) scale(0.85);
  }

  60% {
    opacity: 1;
    transform: translateX(8px) scale(1.05);
  }

  80% {
    transform: translateX(-4px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.trust-from-bottom {
  animation: trustFromBottom 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s forwards;
}

@keyframes trustFromBottom {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.85);
  }

  60% {
    opacity: 1;
    transform: translateY(-7px) scale(1.05);
  }

  80% {
    transform: translateY(4px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.trust-from-right {
  animation: trustFromRight 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s forwards;
}

@keyframes trustFromRight {
  0% {
    opacity: 0;
    transform: translateX(60px) scale(0.85);
  }

  60% {
    opacity: 1;
    transform: translateX(-8px) scale(1.05);
  }

  80% {
    transform: translateX(4px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  flex-shrink: 0;
  opacity: 0;
}

.trust-dot-fade {
  animation: trustDotFade 0.4s ease 1.8s forwards;
}

@keyframes trustDotFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ═══════════════════════════════════════════
   HERO RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-center {
    padding: 60px 24px 44px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .hero-subtitle {
    font-size: 0.93rem;
  }
}

.hero-img-mobile {
  display: none;
}

@media (max-width: 768px) {

  .hero-bg {
    background-image: url('https://i.pinimg.com/736x/33/15/81/3315814c4c03114b8ad7394951c6cd49.jpg');
    background-position: center top;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 0;
    /* bottom gap kam */
    min-height: unset;
    /* extra height hatao */
    align-items: flex-start;
  }

  .hero-center {
    padding: 0 24px 20px;
    /* bottom padding kam */
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
    min-height: unset;
    display: flex;
    flex-direction: column;
  }

  /* "Explore Our" shining effect */
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1;
    margin: 0;
    padding-top: 10px;
    letter-spacing: -0.02em;
    text-align: left;
    display: block;
    width: 100%;
  }

  .hero-title-white {
    display: block;
    background: linear-gradient(90deg,
        #ffffff 0%,
        #ffffff 30%,
        #7ed8d8 42%,
        #e0fafa 48%,
        #b8f0f0 54%,
        #ffffff 66%,
        #ffffff 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s linear infinite;
    margin: 0;
  }

  @keyframes titleShimmer {
    0% {
      background-position: 150% center;
    }

    100% {
      background-position: -150% center;
    }
  }

  .hero-title br {
    display: none;
  }

  .hero-title-float,
  .hero-title-float-2 {
    display: none;
  }

  /* Image float animation */
  .hero-title::after {
    content: '';
    /* display: block; */
    width: calc(100% + 48px);
    margin-left: -24px;
    height: 260px;
    background-image: url('../assets/images/ATHENURA\ INTERNSHIPS.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 12px;
    opacity: 0;
    animation: imgFadeUp 0.9s ease 0.8s forwards,
      imgFloat 4s ease-in-out 1.8s infinite;
    /* float */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  @keyframes imgFadeUp {
    from {
      opacity: 0;
      transform: translateY(28px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes imgFloat {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  /* Paragraph normal, glow hatao */
  .hero-subtitle {
    font-size: 0.87rem;
    line-height: 1.75;
    margin: 0 0 16px;
    width: 100%;
    text-align: left;
    color: rgba(255, 255, 255, 0.75);
    /* normal color */
    text-shadow: none;
    /* glow hatao */
    filter: none;
  }

  /* Buttons */
  .hero-btns {
    gap: 10px;
    margin-bottom: 16px;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    flex: 1;
    justify-content: center;
    padding: 13px 10px;
    font-size: 0.85rem;
    border-radius: 12px;
    text-align: center;
  }

  /* Badges gap bilkul kam */
  .trust-dot {
    display: none;
  }

  .hero-trust {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 12px;
    width: 100%;
    margin-top: 0;
    padding-bottom: 20px;
    /* sirf itna bottom */
  }

  .trust-item {
    font-size: 0.78rem;
    flex: 0 0 calc(50% - 6px);
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.65);
    opacity: 0;
  }

  .trust-last {
    flex: 0 0 100%;
    justify-content: center;
  }

  .trust-from-left {
    animation: trustFromLeft 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
  }

  .trust-from-bottom {
    animation: trustFromBottom 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s forwards;
  }

  .trust-from-right {
    animation: trustFromRight 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s forwards;
  }
}

@media (max-width: 480px) {
  .hero-center {
    padding: 8px 20px 16px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 11vw, 2.6rem);
    padding-top: 8px;
  }

  .hero-title::after {
    width: calc(100% + 40px);
    margin-left: -20px;
    height: 250px;
    background-size: contain;
    background-position: center center;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.84rem;
    line-height: 1.76;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: none;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 8px;
    font-size: 0.82rem;
  }

  .trust-item {
    font-size: 0.74rem;
  }

  .hero-trust {
    padding-bottom: 14px;
  }
}

/* ═══════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════ */
.features-section {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 14px 80px 70px;
  background: #f0f7f7;
  overflow: hidden;
  z-index: 1;
  margin-top: 14px;
  margin-bottom: 0;
}

.fs-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.fs-bg-circle-1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.10) 0%, transparent 65%);
}

.fs-bg-circle-2 {
  width: 360px;
  height: 360px;
  bottom: -80px;
  left: 6%;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.07) 0%, transparent 65%);
}

.fs-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
  animation: fsSlideUp 0.7s ease both;
}

.fs-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: #062a2a;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  margin-top: 40px;
}

.fs-title-accent {
  background: linear-gradient(120deg, #0dcfce, #0ea5a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fs-subtitle {
  font-size: 1.02rem;
  color: #5a8888;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

@keyframes fsSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fs-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.34, 1.56, .64, 1);
}

.fs-reveal.fs-visible {
  opacity: 1;
  transform: translateY(0);
}

.fs-reveal-delay-1 {
  transition-delay: 0.12s;
}

.fs-reveal-delay-2 {
  transition-delay: 0.22s;
}

.fs-reveal-delay-3 {
  transition-delay: 0.10s;
}

.fs-reveal-delay-4 {
  transition-delay: 0.18s;
}

.fs-main-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.fs-big-card {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 36px 36px 32px;
  border: 1.5px solid rgba(14, 165, 164, 0.12);
  box-shadow: 0 4px 32px rgba(14, 165, 164, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.35s;
}

.fs-big-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(14, 165, 164, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.fs-big-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fs-terminal-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0ea5a4, #0c8080);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(14, 165, 164, 0.35);
}

.fs-terminal-icon svg {
  width: 22px;
  height: 22px;
}

.fs-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #15803d;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  padding: 6px 14px;
  border-radius: 100px;
}

.fs-live-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: fsPulse 1.6s infinite;
}

@keyframes fsPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}

.fs-code-window {
  position: absolute;
  top: 24px;
  right: -12px;
  width: 310px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(14, 165, 164, 0.45),
    0 16px 20px rgba(0, 0, 0, 0.18),
    0 4px 10px rgba(14, 165, 164, 0.25),
    0 0 0 3px rgba(10, 96, 96, 0.20);
  border: 1.5px solid #0a6060;
  animation: fsCodeFloat 4s ease-in-out infinite;
  z-index: 3;
}

@keyframes fsCodeFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

.fs-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f0fafa;
  border-bottom: 1px solid rgba(14, 165, 164, 0.12);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.fs-code-file {
  color: #2d5a5a;
}

.fs-code-branch {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #5a8888;
}

.fs-code-body {
  padding: 14px 16px;
  background: #fff;
}

.fs-code-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0;
  animation: fsLineReveal 0.4s ease forwards;
}

.fs-code-line-2 {
  animation-delay: 0.5s !important;
  margin-bottom: 0;
}

@keyframes fsLineReveal {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fs-dot-green {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.fs-code-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #2d5a5a;
  flex: 1;
}

.fs-code-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
}

.fs-code-status.success {
  color: #16a34a;
}

.fs-big-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #062a2a;
  margin-bottom: 12px;
  margin-top: 40px;
}

.fs-big-desc {
  font-size: 0.92rem;
  color: #5a8888;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 520px;
}

.fs-highlight {
  color: #0ea5a4;
  font-weight: 600;
}

.fs-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fs-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #2d5a5a;
  padding: 14px 0;
  border-bottom: 1px solid rgba(14, 165, 164, 0.09);
  font-weight: 500;
  transition: all 0.2s ease;
}

.fs-checklist li:last-child {
  border-bottom: none;
}

.fs-checklist li:hover {
  color: #0ea5a4;
  padding-left: 4px;
}

.fs-checklist li svg {
  width: 18px;
  height: 18px;
  stroke: #0ea5a4;
  flex-shrink: 0;
  background: rgba(14, 165, 164, 0.08);
  border-radius: 50%;
  padding: 3px;
}

.fs-side-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 300px;
  flex-shrink: 0;
}

.fs-duration-card {
  background: linear-gradient(135deg, #0ea5a4, #0c8080);
  border-radius: 22px;
  padding: 28px 28px 24px;
  color: #fff;
  box-shadow: 0 12px 40px rgba(14, 165, 164, 0.38);
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.fs-duration-card::before {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.fs-duration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(14, 165, 164, 0.46);
}

.fs-dur-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.fs-dur-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.fs-dur-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.fs-dur-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.fs-dur-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.fs-dur-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 18px;
}

.fs-dur-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  overflow: hidden;
}

.fs-dur-bar-fill {
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  animation: fsDurFill 1.8s ease 0.6s forwards;
}

@keyframes fsDurFill {
  from {
    width: 0%;
  }

  to {
    width: 72%;
  }
}

.fs-lor-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px 24px 22px;
  border: 1.5px solid rgba(14, 165, 164, 0.12);
  box-shadow: 0 4px 24px rgba(14, 165, 164, 0.08);
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.35s;
  flex: 1;
}

.fs-lor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(14, 165, 164, 0.14);
}

.fs-lor-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.fs-lor-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #062a2a;
}

.fs-lor-icon {
  width: 36px;
  height: 36px;
  background: rgba(251, 191, 36, 0.12);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #d97706;
}

.fs-lor-icon svg {
  width: 18px;
  height: 18px;
}

.fs-lor-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #5a8888;
  margin-bottom: 10px;
}

.fs-lor-desc {
  font-size: 0.82rem;
  color: #5a8888;
  line-height: 1.65;
  margin-bottom: 16px;
}

.fs-lor-progress {
  height: 3px;
  background: rgba(14, 165, 164, 0.12);
  border-radius: 100px;
  overflow: hidden;
}

.fs-lor-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0ea5a4, #0dcfce);
  border-radius: 100px;
  animation: fsLorFill 1.6s ease 0.9s forwards;
}

@keyframes fsLorFill {
  from {
    width: 0%;
  }

  to {
    width: 55%;
  }
}

/* ═══════════════════════════════════════════
   CAREER ACCELERATION BANNER GREEN
═══════════════════════════════════════════ */
.fs-career-banner {
  background: linear-gradient(135deg, #0ea5a4, #0c8080);
  /* same as duration card */
  border-radius: 22px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s;
  box-shadow: 0 12px 40px rgba(14, 165, 164, 0.38);
}

.fs-career-banner::before {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  /* same circle decoration as duration card */
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.fs-career-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(14, 165, 164, 0.46);
}

.fs-career-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
}

.fs-career-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.fs-career-icon svg {
  width: 20px;
  height: 20px;
}

.fs-career-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.fs-career-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.65;
  max-width: 380px;
}

.fs-career-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.fs-career-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.80rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  cursor: default;
  transition: all 0.25s;
}

.fs-career-tag:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.50);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════
   PERKS ROW
═══════════════════════════════════════════ */
.fs-perks-row {
  background: #fff;
  border-radius: 22px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border: 1.5px solid rgba(14, 165, 164, 0.10);
  box-shadow: 0 4px 24px rgba(14, 165, 164, 0.07);
  position: relative;
  z-index: 2;
}

.fs-perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px 12px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1);
  cursor: default;
}

.fs-perk:hover {
  background: rgba(14, 165, 164, 0.05);
  transform: translateY(-4px);
}

.fs-perk-icon {
  width: 52px;
  height: 52px;
  background: rgba(14, 165, 164, 0.09);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #0ea5a4;
  transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

.fs-perk:hover .fs-perk-icon {
  background: rgba(14, 165, 164, 0.16);
  transform: scale(1.10) rotate(-4deg);
}

.fs-perk-icon svg {
  width: 22px;
  height: 22px;
}

.fs-perk-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #062a2a;
}

.fs-perk-sub {
  font-size: 0.78rem;
  color: #5a8888;
}


/* ═══════════════════════════════════════════
   FEATURES SECTION RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .features-section {
    padding: 70px 44px 60px;
  }

  .fs-code-window {
    width: 250px;
    right: -8px;
  }

  .fs-side-stack {
    width: 260px;
  }
}

@media (max-width: 900px) {
  .fs-main-row {
    flex-direction: column;
  }

  .fs-side-stack {
    width: 100%;
    flex-direction: row;
  }

  .fs-duration-card,
  .fs-lor-card {
    flex: 1;
  }

  .fs-code-window {
    display: none;
  }

  .fs-career-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-career-tags {
    width: 100%;
  }

  .fs-perks-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 50px 20px 44px;
  }

  .fs-title {
    font-size: 1.8rem;
  }

  .fs-side-stack {
    flex-direction: column;
  }

  .fs-career-banner {
    padding: 22px 20px;
  }

  .fs-career-tags {
    gap: 8px;
  }

  .fs-career-tag {
    font-size: 0.74rem;
    padding: 7px 13px;
  }

  .fs-perks-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
  }

  .fs-big-card {
    padding: 24px 22px;
  }
}


/* ═══════════════════════════════════════════
   FILTER BAR
═══════════════════════════════════════════ */
.filter-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 6px 22px;
  position: relative;
  z-index: 50;
}

.filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 8px 8px;
  max-width: 100%;
}

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

.f-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(14, 165, 164, 0.18);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(14, 165, 164, 0.08);
  backdrop-filter: blur(8px);
}

.f-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.f-btn:hover {
  color: var(--accent);
  background: rgba(14, 165, 164, 0.08);
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(14, 165, 164, 0.18);
}

.f-btn:hover svg {
  transform: scale(1.2) rotate(-5deg);
  stroke: var(--accent);
}

.f-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(14, 165, 164, 0.35);
  transform: translateY(-1px);
}

.f-btn.active svg {
  stroke: #fff;
  transform: scale(1.1);
}

.f-btn:active {
  transform: translateY(0) scale(0.97);
}

@media (max-width: 768px) {
  .filter-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .filters {
    justify-content: flex-start;
    padding: 4px 20px 10px;
    animation: scrollHint 1.2s ease 0.5s 1 both;
  }

  .f-btn {
    font-size: 0.82rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .filters {
    padding: 4px 16px 10px;
    gap: 7px;
  }

  .f-btn {
    font-size: 0.78rem;
    padding: 7px 13px;
  }
}

@keyframes scrollHint {
  0% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(-18px);
  }

  60% {
    transform: translateX(8px);
  }

  100% {
    transform: translateX(0);
  }
}


/* ═══════════════════════════════════════════
   DOMAIN SECTION & CARD GRID
═══════════════════════════════════════════ */
.domain-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 14px;
  position: relative;
  z-index: 1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: visible;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 14px rgba(14, 165, 164, 0.06);
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.3s, filter 0.35s, opacity 0.35s, border-color 0.3s;
  opacity: 0;
  transform: translateY(22px);
  cursor: pointer;
  position: relative;
}

.card.visible {
  animation: cardReveal 0.5s ease var(--delay, 0s) both;
}

.card.blurred {
  filter: blur(3px);
  opacity: 0.3;
  pointer-events: none;
  transform: scale(0.98) !important;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(14, 165, 164, 0.14);
  border-color: var(--border-hover);
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-inner-clip {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.card-inner-clip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ic, #0ea5a4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 10;
}

.card:hover .card-inner-clip::after {
  transform: scaleX(1);
}

.card-banner {
  height: 130px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-banner::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 14px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.popular-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-muted);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.card-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(14, 165, 164, 0.25);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--accent);
  position: absolute;
  top: 16px;
  left: 16px;
  transition: transform 0.3s;
  z-index: 1;
}

.card:hover .card-icon-box {
  transform: scale(1.06) rotate(-3deg);
}

.card-icon-box svg {
  width: 22px;
  height: 22px;
}

.badge-pill {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(14, 165, 164, 0.14);
  color: #0a7070;
  border: 1px solid rgba(14, 165, 164, 0.25);
  width: fit-content;
  position: relative;
  z-index: 1;
}

.card-body {
  padding: 20px 20px 18px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.card-meta-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.card-meta-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.info-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.info-item.certified {
  color: var(--accent);
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.btn-view-detail {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  border: 1.5px solid var(--border-hover);
  border-radius: 100px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-view-detail:hover {
  background: rgba(14, 165, 164, 0.07);
  border-color: var(--accent);
}

.btn-apply-now {
  flex: 1;
  padding: 10px 14px;
  background: var(--accent);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 3px 12px rgba(14, 165, 164, 0.28);
}

.btn-apply-now:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(14, 165, 164, 0.36);
}


/* ═══════════════════════════════════════════
   LOAD MORE / SHOW LESS
═══════════════════════════════════════════ */
.load-wrap {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--border-hover);
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(14, 165, 164, 0.1);
}

.explore-btn svg {
  width: 16px;
  height: 16px;
}

.explore-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(14, 165, 164, 0.32);
}

.explore-btn.secondary {
  background: transparent;
  border-color: rgba(14, 165, 164, 0.22);
  color: var(--text-muted);
  box-shadow: none;
}

.explore-btn.secondary:hover {
  background: rgba(14, 165, 164, 0.07);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════
   CARD GRID RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1050px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .domain-section {
    padding: 0 20px 14px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .load-wrap {
    margin-top: 14px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .card-actions {
    flex-direction: column;
  }
}


/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
@keyframes modalSlideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88) rotateX(8deg);
    filter: blur(6px);
  }

  60% {
    filter: blur(0px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
  }
}

@keyframes borderGlow {

  0%,
  100% {
    box-shadow: 0 30px 80px rgba(14, 165, 164, 0.16), 0 4px 24px rgba(0, 0, 0, 0.07);
  }

  50% {
    box-shadow: 0 30px 80px rgba(14, 165, 164, 0.32), 0 4px 24px rgba(0, 0, 0, 0.1);
  }
}

@keyframes moduleItemReveal {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tagsPop {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes applyBtnReveal {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 42, 42, 0.45);
  backdrop-filter: blur(3px);
  z-index: 80;
}

.modal-backdrop.active {
  display: block;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.93);
  width: min(600px, 93vw);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  border-radius: 28px;
  border: 1.5px solid rgba(14, 165, 164, 0.22);
  box-shadow: 0 30px 80px rgba(14, 165, 164, 0.16), 0 4px 24px rgba(0, 0, 0, 0.07);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  padding: 24px 28px 22px;
  perspective: 1000px;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  animation: modalSlideIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    borderGlow 3s ease-in-out 0.8s infinite;
}

.modal.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: shimmerLine 0.8s ease 0.3s 1 forwards;
  pointer-events: none;
  z-index: 100;
  border-radius: 28px;
}

.modal.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--modal-accent, #0ea5a4), transparent, var(--modal-accent, #0ea5a4));
  border-radius: 28px 28px 0 0;
  animation: applyBtnReveal 0.4s ease 0.5s both;
}

.modal::-webkit-scrollbar {
  width: 4px;
}

.modal::-webkit-scrollbar-thumb {
  background: rgba(14, 165, 164, 0.2);
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(14, 165, 164, 0.3);
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(14, 165, 164, 0.1);
  z-index: 10;
}

.modal-close svg {
  width: 14px;
  height: 14px;
}

.modal-close:hover {
  background: var(--accent);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 16px rgba(14, 165, 164, 0.35);
}

.modal.active .m-header {
  animation: moduleItemReveal 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.modal.active .m-desc {
  animation: moduleItemReveal 0.4s ease 0.3s both;
}

.modal.active .m-modules {
  animation: moduleItemReveal 0.4s ease 0.38s both;
}

.modal.active .m-module-list li:nth-child(1) {
  animation: moduleItemReveal 0.4s ease 0.42s both;
}

.modal.active .m-module-list li:nth-child(2) {
  animation: moduleItemReveal 0.4s ease 0.48s both;
}

.modal.active .m-module-list li:nth-child(3) {
  animation: moduleItemReveal 0.4s ease 0.54s both;
}

.modal.active .m-module-list li:nth-child(4) {
  animation: moduleItemReveal 0.4s ease 0.60s both;
}

.modal.active .m-module-list li:nth-child(5) {
  animation: moduleItemReveal 0.4s ease 0.66s both;
}

.modal.active .m-module-list li:nth-child(6) {
  animation: moduleItemReveal 0.4s ease 0.72s both;
}

.modal.active .m-tags {
  animation: tagsPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.72s both;
}

.modal.active .m-apply {
  animation: applyBtnReveal 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

.modal.active .m-icon {
  animation: tagsPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.m-header {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}

.m-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.m-icon:hover {
  transform: scale(1.1) rotate(-5deg);
}

.m-icon svg {
  width: 22px;
  height: 22px;
}

.m-cat {
  font-family: var(--font-mono);
  font-size: 0.60rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 4px;
}

.m-cat.tech {
  background: rgba(14, 165, 164, 0.1);
  color: #0a7070;
  border: 1px solid rgba(14, 165, 164, 0.2);
}

.m-cat.design {
  background: rgba(192, 132, 252, 0.1);
  color: #7e22ce;
  border: 1px solid rgba(192, 132, 252, 0.22);
}

.m-cat.marketing {
  background: rgba(251, 146, 60, 0.1);
  color: #c2410c;
  border: 1px solid rgba(251, 146, 60, 0.22);
}

.m-cat.business {
  background: rgba(234, 179, 8, 0.1);
  color: #854d0e;
  border: 1px solid rgba(234, 179, 8, 0.22);
}

.m-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3px;
  background: linear-gradient(90deg, #062a2a 0%, #062a2a 30%, #0ea5a4 45%, #34d399 55%, #062a2a 70%, #062a2a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 3s linear 0.8s 1 forwards;
}

.m-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.m-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 13px;
  padding: 11px 14px;
  background: rgba(14, 165, 164, 0.035);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}

.m-section-label {
  font-family: var(--font-mono);
  font-size: 0.60rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.m-module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 13px;
}

.m-module-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: rgba(14, 165, 164, 0.04);
  border: 1px solid rgba(14, 165, 164, 0.1);
  border-radius: 9px;
  padding: 8px 12px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.m-module-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--modal-accent, #0ea5a4);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.m-module-list li:hover {
  background: rgba(14, 165, 164, 0.09);
  border-color: rgba(14, 165, 164, 0.28);
  transform: translateX(5px);
}

.m-module-list li:hover::before {
  transform: scaleY(1);
}

.m-arrow {
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.m-module-list li:hover .m-arrow {
  transform: translateX(3px);
}

.m-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.m-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  background: rgba(14, 165, 164, 0.06);
  border: 1px solid rgba(14, 165, 164, 0.14);
  padding: 4px 11px;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.m-tag:hover {
  background: rgba(14, 165, 164, 0.14);
  border-color: rgba(14, 165, 164, 0.35);
  color: var(--accent);
  transform: translateY(-2px) scale(1.05);
}

.m-apply {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(14, 165, 164, 0.3);
}

.m-apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 100px;
}

.m-apply:hover {
  opacity: 0.92;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 32px rgba(14, 165, 164, 0.42);
}

.m-apply:hover::before {
  transform: scaleX(1);
}

.m-apply:active {
  transform: translateY(0) scale(0.98);
}


/* ═══════════════════════════════════════════
   MODAL RESPONSIVE PERFECTLY CENTRED
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.93);
    width: calc(100vw - 24px);
    max-width: 100%;
    max-height: 85vh;
    border-radius: 20px;
    padding: 24px 18px;
    margin: 0;
  }

  .modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
    animation: modalSlideInMobile 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
      borderGlow 3s ease-in-out 0.8s infinite;
  }
}

@keyframes modalSlideInMobile {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    filter: blur(4px);
  }

  60% {
    filter: blur(0px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 480px) {
  .modal {
    width: calc(100vw - 16px);
    max-height: 88vh;
    padding: 20px 14px;
    border-radius: 18px;
  }
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.athenura-footer {
  background: #0ea5a4;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  padding-top: 60px;
  margin: 0;
  margin-top: 14px;
  padding-bottom: 0;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
  display: block;
}

.branding p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 230px;
}

.follow-us-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-links a:nth-child(1) {
  color: #0A66C2;
}

.social-links a:nth-child(2) {
  color: #E1306C;
}

.social-links a:nth-child(3) {
  color: #1DA1F2;
}

.social-links a:nth-child(4) {
  color: black;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  transition: all 0.25s;
}

.footer-col ul li a:hover {
  color: #d6f1f3;
  transform: translateX(4px);
  text-decoration: underline;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.white-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}

.white-circle svg {
  width: 15px;
  height: 20px;
  display: block;
}

.email-icon {
  color: #e11d48;
}

.phone-icon {
  color: #22c55e;
}

.info-text {
  line-height: 1.4;
}

.info-text span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.info-text a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.info-row:hover a {
  text-decoration: underline;
  cursor: pointer;
}

.info-row:hover .white-circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 10px;
  display: block;
  margin-top: 4px;
}

.address {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.address::before {
  content: "📍";
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom-bar {
  padding: 0;
}

.bottom-content {
  max-width: 1400px;
  margin: auto;
  padding: 24px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.bottom-content p a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s;
}

.bottom-content p a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
}


/* ═══════════════════════════════════════════
   FOOTER RESPONSIVE
═══════════════════════════════════════════ */
/* Responsive (exactly as original) */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
    gap: 40px;
    padding: 0 40px 60px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 24px 60px;
  }

  .footer-col.branding {
    grid-column: 1 / -1;
  }

  .bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px 24px 40px;
  }
}

@media (min-width: 480px) and (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .branding {
    grid-column: span 2;
  }

  .branding p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 50px;
  }

  .bottom-content {
    padding: 14px 20px 36px;
  }

  .legal-links {
    gap: 16px;
  }

  .legal-links a {
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════════
   PREMIUM HERO SECTION (New Layout)
═══════════════════════════════════════════ */
#premium-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0f172a;
  color: white;
  padding: 120px 20px 60px;
  font-family: 'Outfit', sans-serif;
  z-index: 1;
}

#premium-hero .hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(14, 165, 164, 0.4) 0%, rgba(124, 58, 237, 0.15) 45%, rgba(3, 10, 10, 0) 70%);
  filter: blur(80px);
  z-index: -2;
  animation: pulseGlow 8s infinite alternate;
}

#premium-hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

#premium-hero .hero-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  z-index: 10;
  position: relative;
}

#premium-hero .hero-text-side {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

#premium-hero .hero-image-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

#premium-hero .hero-image-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

#premium-hero .hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#premium-hero .hero-image-box:hover img {
  transform: scale(1.05);
}

#premium-hero .premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  border-radius: 50px;
  background: rgba(14, 165, 164, 0.1);
  border: 1px solid rgba(14, 165, 164, 0.3);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6ee7e7;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

#premium-hero .premium-badge span.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 2s infinite;
}

#premium-hero .hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
  text-align: left;
}

#premium-hero .text-gradient {
  background: linear-gradient(135deg, #2fbfdc 0%, #0ea5a4 50%, #20e9ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  position: relative;
}

#premium-hero .hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.4s forwards;
  text-align: left;
}

#premium-hero .cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.6s forwards;
}

#premium-hero .btn-glow {
  position: relative;
  padding: 16px 40px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, #0ea5a4, #3b82f6);
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
}

#premium-hero .btn-glow::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #030a0a;
  border-radius: 12px;
  z-index: -1;
  transition: opacity 0.3s ease;
}

#premium-hero .btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(14, 165, 164, 0.5);
}

#premium-hero .btn-glow:hover::before {
  opacity: 0;
}

#premium-hero .btn-outline {
  padding: 16px 40px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

#premium-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#premium-hero .stats-container {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.8s forwards;
  width: 100%;
}

#premium-hero .stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

#premium-hero .stat-number {
  font-family: 'Clash Display', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#premium-hero .stat-label {
  font-size: 0.85rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Floating Elements for 3D/Premium feel */
#premium-hero .floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 5;
  color: #fff;
}

#premium-hero .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#premium-hero .float-1 {
  top: 15%;

  animation: floatX 8s ease-in-out infinite;
}

#premium-hero .float-1 .icon-box {
  background: rgba(14, 165, 164, 0.15);
  color: #0ea5a4;
}

#premium-hero .float-2 {
  top: 15%;
  right: 5%;
  animation: floatY 7s ease-in-out infinite reverse;
}

#premium-hero .float-2 .icon-box {
  background: rgba(167, 139, 250, 0.15);
  color: #a78bfa;
}

#premium-hero .float-3 {
  bottom: 9%;
  right: 5%;
  animation: floatXY 9s ease-in-out infinite 1s;
}

#premium-hero .float-3 .icon-box {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

#premium-hero .float-text {
  display: flex;
  flex-direction: column;
}

#premium-hero .float-title {
  font-weight: 600;
  font-size: 0.95rem;
}

#premium-hero .float-sub {
  font-size: 0.8rem;
  color: #9ca3af;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

@keyframes floatX {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(15px) translateY(-10px);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatXY {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-15px, -15px);
  }
}

@media (max-width: 992px) {
  #premium-hero .hero-container {
    flex-direction: column;
    text-align: left;
  }

  #premium-hero .hero-text-side {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  #premium-hero .hero-title,
  #premium-hero .hero-desc {
    text-align: left;
  }

  #premium-hero .cta-group {
    justify-content: flex-start;
    width: 100%;
  }

  #premium-hero .stats-container {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  #premium-hero .stat-item {
    align-items: flex-start;
  }

  #premium-hero .floating-element {
    display: none;
  }
}

@media (max-width: 768px) {
  #premium-hero {
    padding: 100px 20px 40px;
    min-height: auto;
  }

  #premium-hero .hero-image-box {
    width: 100%;
    margin-top: 30px;
  }

  #premium-hero .hero-title {
    font-size: 2.8rem;
  }

  #premium-hero .cta-group {
    flex-direction: column;
    width: 100%;
  }

  #premium-hero .btn-glow,
  #premium-hero .btn-outline {
    width: 100%;
    justify-content: center;
  }
}