/* === BASE STYLES === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* === HIDE DEFAULT SCROLLBAR === */
html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* === CUSTOM INVERT CURSOR === */

/* Only apply custom cursor on desktop devices with a real mouse */
@media (pointer: fine) {

  /* 1. Hide the ugly default system cursor globally */
  body,
  a,
  button,
  input,
  textarea,
  select {
    cursor: none !important;
  }

  /* 2. The Custom Dot */
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background-color: #fff;
    /* MUST be white for the difference blend mode to work perfectly */
    border-radius: 50%;
    pointer-events: none;
    /* CRITICAL: Prevents the cursor from blocking your clicks */
    z-index: 99999;
    /* Stays above absolutely everything */

    /* The Magic Inversion */
    mix-blend-mode: difference;

    /* Hardware acceleration for buttery smoothness */
    will-change: transform;
  }
}

/* Hide the custom dot entirely on mobile/touch devices */
@media (pointer: coarse) {
  .cursor-dot {
    display: none !important;
  }
}

/* === CUSTOM MOBILE-STYLE SCROLLBAR === */
.custom-scrollbar {
  position: fixed;
  top: 0;
  right: 3px;
  width: 6px;
  height: 100vh;
  z-index: 999999;
  pointer-events: none;
}

.custom-scroll-thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.custom-scrollbar.is-visible .custom-scroll-thumb {
  opacity: 1;
}

/* === ADVANCED MULTI-SLICE LOADER === */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

.loader-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
}

.slice {
  flex: 1;
  height: 100%;
  background: #000;
  border-right: 1px solid rgba(255, 255, 255, 0.075);
  transform-origin: center;
}

.slice:last-child {
  border-right: none;
}

.loader-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loader-center {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.loader-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 5vw;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
}
.loader-brand img {
  max-width: 350px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.loader-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.loader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #4f18bc 100%);
}

.loader-counter {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  text-align: right;
}

/* === MAGNETIC GLASS DOCK NAVBAR === */
.dock-nav {
  position: fixed;
  top: 2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10000;
  transform: translateY(-200%);
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.dock-nav.is-sticky {
  top: 1rem;
}

.dock-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  pointer-events: auto;
  gap: 2rem;
}

.dock-logo {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.214);
  /* padding: 0.8rem 1.5rem; */
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
  height: 50px;
  width: 110px;
  overflow: hidden;
}
.dock-logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.dock-logo:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.dock-track {
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.4rem;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.dock-active-indicator {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  height: calc(100% - 0.8rem);
  width: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.dock-link {
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.6rem 1.8rem;
  border-radius: 100px;
  transition: color 0.3s ease;
}

.dock-link:hover {
  color: #fff;
}

.dock-cta {
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, background 0.4s ease;
}

.dock-cta:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
}

/* === MOBILE MENU TOGGLE === */
.menu-toggle {
  display: none;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 10001;
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.line {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000;
  left: 12px;
  transition: transform 0.4s ease, top 0.4s ease;
}

.line-1 {
  top: 17px;
}

.line-2 {
  top: 25px;
}

.menu-toggle.active {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-toggle.active .line {
  background: #fff;
}

.menu-toggle.active .line-1 {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.active .line-2 {
  top: 21px;
  transform: rotate(-45deg);
}

/* === PREMIUM MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #050505;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at 90% 10%);
  visibility: hidden;
}

.mobile-menu-container {
  height: 85%;
  width: 90%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  perspective: 1000px;
  width: 100%;
}

.mobile-nav-item {
  font-family: "Geist";
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: rotateX(-90deg) translateY(50px);
  transform-origin: top center;
}

.nav-num {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.5rem;
  transition: color 0.4s ease;
}

.nav-text {
  color: #fff;
  font-size: 11vw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  transition: color 0.4s ease, -webkit-text-stroke 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media(min-width: 500px) {
  .nav-text {
    font-size: 3.5rem;
  }
}

.mobile-nav-item:hover .nav-text {
  color: #333333;
  transform: translateX(15px);
}

.mobile-nav-item:hover .nav-num {
  color: #fff;
}

.mobile-footer {
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-contact p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.mobile-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.mobile-contact a:hover {
  color: #f09433;
}

.mobile-socials {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.mobile-socials a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-socials a:hover {
  color: #fff;
}

@media (max-width: 900px) {

  .dock-track,
  .dock-cta {
    display: none;
  }

  .dock-container {
    width: 90%;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }
}

/* === HERO SECTION === */
.hero {
  min-height: 180vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20vh;
  position: relative;
  width: 100vw;
}

/* === THE PREMIUM LIQUID AURORA BACKGROUND === */
.premium-liquid-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  z-index: -1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

.liquid-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  mix-blend-mode: color-dodge;
}

.orb-1 {
  width: 50vw;
  height: 50vw;
  background: #833ab4;
  top: -10%;
  left: -10%;
}

.orb-2 {
  width: 60vw;
  height: 40vw;
  background: #fd1d1d;
  top: 10%;
  right: -10%;
}

.orb-3 {
  width: 45vw;
  height: 45vw;
  background: #f56040;
  bottom: -20%;
  left: 20%;
}

.orb-4 {
  width: 40vw;
  height: 40vw;
  background: #fcb045;
  top: 30%;
  left: 30%;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

.premium-liquid-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* === FLOATING SOCIAL MEDIA PARTICLES === */
.particles-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 5;
}

.particle {
  position: absolute;
}

.particle .p-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(18, 18, 30, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Colors & Glows */
.p-1 .p-inner {
  border-color: rgba(225, 48, 108, 0.4);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.2);
}

/* Instagram */
.p-2 .p-inner {
  border-color: rgba(29, 161, 242, 0.4);
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.2);
}

/* Twitter */
.p-3 .p-inner {
  border-color: rgba(0, 119, 181, 0.4);
  box-shadow: 0 10px 30px rgba(0, 119, 181, 0.2);
}

/* LinkedIn */
.p-4 .p-inner {
  border-color: rgba(24, 119, 242, 0.4);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.2);
}

/* Facebook */
.p-5 .p-inner {
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

/* YouTube */

.p-1 {
  top: 18%;
  left: 15%;
}

.p-2 {
  top: 25%;
  right: 18%;
}

.p-3 {
  top: 60%;
  left: 10%;
}

.p-4 {
  top: 52%;
  right: 15%;
}

.p-5 {
  top: 70%;
  left: 25%;
}

/* Hero Content */
.bg-text {
  position: absolute;
  top: 60%;
  left: 65%;
  transform: translate(-50%, -50%);
  /* Base transform */
  font-family: 'Geist', sans-serif;
  font-size: 12vw;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #333333;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.hero-title-wrapper {
  text-align: center;
  z-index: 20;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 2rem 0;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5vw;
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  font-family: 'Montserrat', sans-serif;
}

.char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.2em;
}

.char {
  display: inline-block;
  transform: translateY(0%);
}

/* === MOBILE STAGE === */
@property --a {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes spinBorder {
  to {
    --a: 360deg;
  }
}

.stage-wrapper {
  margin-top: 4rem;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.stage {
  position: relative;
  width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glow-wrap {
  position: relative;
  border-radius: 50px;
  padding: 0px;
  animation: spinBorder 10s linear infinite;
  flex-shrink: 0;
}

.glow-wrap::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 56px;
  background: conic-gradient(from var(--a, 0deg), #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcb045, #f77737, #fd1d1d, #c13584, #833ab4, #405de6);
  filter: blur(60px);
  opacity: 0.72;
  animation: spinBorder 10s linear infinite;
  z-index: -1;
}

.glow-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 52px;
  background: conic-gradient(from calc(var(--a, 0deg) + 180deg), transparent 0%, rgba(255, 255, 255, 0.18) 20%, transparent 40%, rgba(255, 255, 255, 0.12) 60%, transparent 80%);
  filter: blur(50px);
  animation: spinBorder 10s linear infinite;
  z-index: -1;
}

.phone-img {
  display: block;
  width: 330px;
  height: 680px;
  background: #050505;
  border-radius: 55px;
  position: relative;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
  object-fit: cover;

}

.phone-img {
  height: 1%;
  object-fit: contain;
}

.fc {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(18, 18, 30, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 3px;
}

.fc-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

#fc1 {
  top: 14%;
  right: -130px;
}

#fc2 {
  bottom: 30%;
  left: -138px;
}

#fc3 {
  bottom: 12%;
  right: -122px;
}

#fc4 {
  top: 38%;
  left: -126px;
}

@media (max-width: 768px) {
  .loader-brand {
    font-size: 5vw;
    width: 80%;
  }

  .loader-counter {
    font-size: 2.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .loader-progress-wrap {
    height: 3px;
  }

  .hero {
    min-height: 150vh;
    padding-top: 15vh;
  }

  .hero-title {
    font-size: 11vw;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .stage-wrapper {
    margin-top: 2rem;
  }

  .bg-text {
    /* font-size: 16vw;
                top: 50%;
                opacity: 0.5;
                -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08); */
    display: none;
  }

  .stage {
    width: 275px;
  }

  .phone-img {
    width: 275px;
    height: 100%;
    border-radius: 50px;
  }

  .glow-wrap {
    border-radius: 40px;
  }

  #fc1,
  #fc2,
  #fc3,
  #fc4 {
    padding: 8px 12px;
    gap: 8px;
  }

  .fc-icon {
    width: 28px;
    height: 28px;
  }

  .fc-icon svg {
    width: 12px;
    height: 12px;
  }

  .fc-label {
    font-size: 10px;
  }

  .fc-val {
    font-size: 12px;
  }

  #fc1 {
    top: 12%;
    right: -50px;
  }

  #fc2 {
    bottom: 35%;
    left: -55px;
  }

  #fc3 {
    bottom: 15%;
    right: -45px;
  }

  #fc4 {
    top: 42%;
    left: -50px;
  }

  .premium-liquid-container {
    height: 90vh;
  }

  .liquid-orb {
    filter: blur(60px);
  }

  .particle .p-inner {
    width: 40px;
    height: 40px;
  }

  .particle .p-inner svg {
    width: 18px;
    height: 18px;
  }

  .p-1 {
    top: 15%;
    left: 8%;
  }

  .p-2 {
    top: 28%;
    right: 8%;
  }

  .p-3 {
    top: 55%;
    left: 5%;
  }

  .p-4 {
    top: 48%;
    right: 6%;
  }

  .p-5 {
    top: 68%;
    left: 12%;
  }
}

/* === CINEMATIC ABOUT SECTION === */
.about-modern {
  width: 100vw;
  height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
}

.about-pin-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Massive Background Typography */
.massive-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.massive-text {
  font-family: 'Geist', sans-serif;
  font-size: 14vw;
  line-height: 0.85;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #333333;
  white-space: nowrap;
  margin: 0;
}

/* Central Scaling Mask */
.media-mask-container {
  position: absolute;
  width: 25vw;
  /* Starts small like a card */
  height: 40vh;
  border-radius: 40px;
  overflow: hidden;
  z-index: 5;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  /* Adding a subtle border that will fade out */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.scale-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
  /* Pre-scaled so it zooms OUT while the container zooms IN */
  filter: brightness(0.7) contrast(1.1);
}

/* Glass Overlay */
.glass-stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  /* Hidden initially */
  padding: 5vw;
}

.overlay-content {
  max-width: 1000px;
  width: 100%;
  color: #fff;
}

.overlay-subtitle {
  font-family: 'Montserrat', sans-serif;
  color: #e1d830;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.overlay-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5vw;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 4rem;
}

.overlay-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 90%;
}

.overlay-description:last-of-type {
  margin-bottom: 3rem;
}

.modern-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.m-stat h4 {
  font-family: 'Geist', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.m-stat p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

/* === CINEMATIC ABOUT SECTION (MOBILE OVERRIDES) === */
@media (max-width: 768px) {

  /* Main Section Spacing */
  .about-modern {
    height: auto;
    min-height: 100vh;
    padding: 5rem 1rem 6rem 1rem;
    /* Tighter padding for edge-to-edge feel */
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .about-pin-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Stack Background Typography */
  .massive-text-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1rem;
  }

  .massive-text {
    font-size: 9vw;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    /* Hollow stroke effect looks highly modern on mobile */
  }

  /* Container holding both image and overlay */
  .media-mask-container {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    box-shadow: none;
  }

  /* The Image (Full width, rounded) */
  .scale-media {
    position: relative;
    width: 100%;
    height: 50vh;
    /* Taller image to allow the card to overlap */
    min-height: 350px;
    object-fit: cover;
    border-radius: 24px;
    transform: none !important;
    /* GSAP will handle the mobile scale */
  }

  /* The Floating Glass Card */
  .glass-stats-overlay {
    position: relative;
    inset: auto;
    width: 90%;
    margin: 0 auto;
    margin-top: -12vh;
    /* Pulls the card UP to overlap the image */
    padding: 1.5rem 1.2rem;
    background: rgba(12, 12, 12, 0.75);
    /* Darker glass effect */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border: 1px solid rgba(255, 255, 255, 0.15); */
    border-radius: 24px;
    opacity: 1 !important;
    display: block;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    z-index: 10;
  }

  .overlay-subtitle {
    font-size: 0.65rem;
    margin-bottom: 0.4rem;
  }

  .overlay-title {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    font-weight: 600;
  }

  .overlay-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
  }

  /* Grid layout for mobile */
  .modern-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
  }

  /* Make the 3rd stat span the whole bottom row */
  .modern-stats-grid .m-stat:last-child {
    grid-column: span 2;
    margin-top: 0.3rem;
  }

  .m-stat h4 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .m-stat p {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .m-stat h4 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
  }
}

/* === CINEMATIC PLATFORMS SECTION === */

/* === CINEMATIC PLATFORMS SECTION === */
.cinematic-platforms {
  width: 100vw;
  min-height: 100vh;
  padding: 20vh 5vw;
  background: #050505;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

/* === YOUR EXACT ORIGINAL ORBS === */
.plat-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  contain: layout style paint;
}

.plat-orb-left {
  width: 45vw;
  height: 45vw;
  top: 0%;
  left: -20%;
  background: linear-gradient(#cc2366, #9900ff);
}

.plat-orb-right {
  width: 50vw;
  height: 40vw;
  top: 0%;
  right: -15%;
  background: linear-gradient(#cc2366, #b0b43a);
}

/* === HEADER === */
.platforms-header {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 5;
  text-align: center;
}

.c-subtitle {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.c-title {
  font-family: 'Geist', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
}

/* === NEW NEON GLASS GRID === */
.social-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 5;
}

/* Global Card Styling */
.s-card {
  position: relative;
  background: rgba(15, 15, 18, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.s-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* The ambient hover glow inside the card */
.s-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.s-card:hover {
  transform: translateY(-10px);
}

.s-card:hover .s-card-glow {
  opacity: 0.15;
}

/* Icons & Top Section */
.s-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #fff;
  transition: all 0.4s ease;
}

.s-id {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  display: block;
  transition: color 0.4s ease;
}

/* Stats */
.s-stats h3 {
  font-family: 'Geist', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.5rem;
}

.s-stats p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3rem;
}

/* Action Button */
.s-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.s-card:hover .s-btn {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* ========================================= */
/* PLATFORM SPECIFIC COLORS & HOVER STATES   */
/* ========================================= */

/* INSTAGRAM (Gradient) */
.s-card-insta:hover {
  border-color: #e1306c;
  box-shadow: 0 15px 40px rgba(225, 48, 108, 0.2);
}

.s-card-insta .s-card-glow {
  background: radial-gradient(circle at top left, #f09433, #e1306c);
}

.s-card-insta:hover .s-icon-wrapper {
  color: #e1306c;
  border-color: #e1306c;
  background: rgba(225, 48, 108, 0.2);
}

.s-card-insta:hover .s-id {
  color: #f09433;
}

/* FACEBOOK (Blue) */
.s-card-fb:hover {
  border-color: #1877F2;
  box-shadow: 0 15px 40px rgba(24, 119, 242, 0.2);
}

.s-card-fb .s-card-glow {
  background: radial-gradient(circle at top left, #1877F2, transparent);
}

.s-card-fb:hover .s-icon-wrapper {
  color: #1877F2;
  border-color: #1877F2;
  background: rgba(24, 119, 242, 0.1);
}

.s-card-fb:hover .s-id {
  color: #1877F2;
}

/* YOUTUBE (Red) */
.s-card-yt:hover {
  border-color: #0091ff;
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.s-card-yt .s-card-glow {
  background: radial-gradient(circle at top left, #0091ff, transparent);
}

.s-card-yt:hover .s-icon-wrapper {
  color: #0091ff;
  border-color: #0091ff;
  background: rgba(255, 0, 0, 0.1);
}

.s-card-yt:hover .s-id {
  color: #0091ff;
}

/* === ICON HOVER ANIMATIONS === */

/* 1. Add a buttery, springy transition to the SVG itself */
.s-icon-wrapper svg {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 2. Lift the whole icon box slightly when the card is hovered */
.s-card:hover .s-icon-wrapper {
  transform: translateY(-5px) scale(1.02);
}

/* 3. Platform-Specific Dynamic "Pop" Effects */

/* Instagram: Pop up and slight tilt right */
.s-card-insta:hover .s-icon-wrapper svg {
  transform: scale(1.25) rotate(8deg);
}

.s-card-fb:hover .s-icon-wrapper svg {
  transform: scale(1.25) rotate(-8deg);
}

/* YouTube: Pure forward scale (like a play button pulsing) */
.s-card-yt:hover .s-icon-wrapper svg {
  transform: scale(1.3);
}

/* === MOBILE OVERRIDES === */
/* === MOBILE OVERRIDES === */
@media (max-width: 900px) {

  /* 1. Reduce massive vertical spacing around the whole section */
  .cinematic-platforms {
    padding: 5vh 5vw;
    /* Reduced from 15vh to free up viewport space */
  }

  .c-title {
    font-size: 2rem;
    /* Scaled down for mobile */
    margin-bottom: 1rem;
  }

  /* 2. Tighter grid with less gap between the 3 cards */
  .social-grid-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    /* Reduced from 2rem to keep cards close together */
    margin-top: -60px;
    margin-bottom: 30px;
     /* Negative margins to pull the grid up and reduce the empty space on mobile */
  }

  /* 3. Compress card padding to save vertical space */
  .s-card {
    padding: 1.25rem 1.5rem;
    /* Reduced from 2.5rem 2rem */
  }

  /* 4. Shrink the icons slightly */
  .s-icon-wrapper {
    width: 45px;
    height: 45px;
    margin-bottom: 0.5rem;
    /* Reduced from 1.5rem */
  }

  .s-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }

  /* 5. Shrink text and drastically reduce the 3rem empty spaces */
  .s-id {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    /* Drastically reduced from 3rem */
  }

  .s-stats h3 {
    font-size: 2.2rem;
    /* Scaled down from 3.5rem to fit vertically */
    margin-bottom: 0.25rem;
  }

  .s-stats p {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    /* Drastically reduced from 3rem */
  }

  /* 6. Make the button more compact */
  .s-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }

  /* Make sure the SVG inside the button scales down too */
  .s-btn svg {
    width: 14px;
    height: 14px;
  }

  /* 1. Turn the content wrapper into a strict flex column */
  .s-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    /* This single line creates perfect, even spacing between the 4 main blocks */
  }

  /* 2. Strip out all the old, hardcoded margins so they don't fight the flex gap */
  .s-icon-wrapper,
  .s-id,
  .s-stats,
  .s-stats p {
    margin-bottom: 0 !important;
  }

  /* 3. Handle the internal spacing of the Stats block specifically */
  .s-stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    /* Keeps the "404K" and "FOLLOWERS" tightly grouped together */
  }

  .s-stats h3 {
    margin-bottom: 0 !important;
    line-height: 1;
  }
}

/* Facebook: Pop up and slight tilt left */

/* === SPLIT-SCREEN DYNAMIC SERVICES === */
.split-services {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: #020202;
  padding: 20vh 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
}

.ss-bg-text-wrapper {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.ss-bg-text {
  font-family: 'Geist', sans-serif;
  font-size: 15vw;
  font-weight: 800;
  white-space: nowrap;
  color: #333;
  margin: 0;
  z-index: -1;
}

.ss-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.ss-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
}

.ss-header {
  margin-bottom: 4rem;
}

.ss-subtitle {
  font-family: 'Montserrat', sans-serif;
  color: #f09433;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.ss-title {
  font-family: 'Geist', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.ss-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.ss-list-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ss-list-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ss-num {
  font-family: 'Geist', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.4s ease;
}

.ss-item-title {
  font-family: 'Geist', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0;
}

.ss-list-item:hover .ss-item-title,
.ss-list-item.active .ss-item-title {
  color: #fff;
  -webkit-text-stroke: 1px transparent;
  transform: translateX(15px);
}

.ss-list-item:hover .ss-num,
.ss-list-item.active .ss-num {
  color: #e1306c;
}

.ss-view-all {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ss-view-all svg {
  transition: transform 0.3s ease;
}

.ss-view-all:hover {
  color: #f09433;
}

.ss-view-all:hover svg {
  transform: translateX(8px);
}

.ss-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ss-glass-stage {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  transform: translateZ(0);
}

.ss-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, #f09433 0%, #e1306c 50%, #833ab4 100%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(50px);
  opacity: 0.7;
  animation: morphBlob 10s infinite alternate ease-in-out;
  z-index: 1;
  transform-origin: center;
  margin-top: -40%;
  margin-left: -40%;
}

@keyframes morphBlob {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(0deg) scale(1);
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(180deg) scale(1.1);
  }
}

.ss-glass-panel {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  z-index: 2;
  padding: 3rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.ss-content-layer {
  position: absolute;
  inset: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ss-content-layer.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ss-content-top {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ss-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.ss-card-title {
  font-family: 'Geist', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.ss-excerpt {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin: 0;
}

.ss-action-btn {
  align-self: flex-start;
  padding: 1rem 2rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.ss-action-btn:hover {
  background: #f09433;
  color: #fff;
  transform: translateY(-3px);
}

/* Keep Mobile Elements Hidden on Desktop */
.ss-mobile-content,
.ss-mobile-blob,
.ss-mobile-icon {
  display: none;
}

.ss-item-title-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

/* === MOBILE OVERRIDES (Premium Glass Cards & Glowing BG) === */
@media (max-width: 900px) {

  .split-services {
    padding: 15vh 5vw;
  }

  .ss-container {
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 5;
  }

  /* Hide the right-side dynamic stage completely on mobile */
  .ss-right {
    display: none;
  }

  /* 1. The Mobile Ambient Glowing Blob */
  .ss-mobile-blob {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140vw;
    height: 140vw;
    background: linear-gradient(135deg, #f09433 0%, #e1306c 50%, #833ab4 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    opacity: 0.55;
    animation: morphBlob 10s infinite alternate ease-in-out;
    z-index: 1;
    /* Sits behind the cards */
    transform-origin: center;
    margin-top: -70vw;
    margin-left: -70vw;
    pointer-events: none;
  }

  .ss-header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 5;
  }

  .ss-title {
    font-size: 11vw;
  }

  .ss-list {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 5;
  }

  /* 2. Glassmorphism Styling for the List Items */
  .ss-list-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    /* Glass effect over the blob */
    background: rgba(15, 15, 18, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }

  .ss-list-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ss-item-title-wrap {
    gap: 1rem;
  }

  /* 3. The New Mobile Icon Blocks */
  .ss-mobile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
  }

  .ss-mobile-icon svg {
    width: 22px;
    height: 22px;
  }

  .ss-item-title {
    font-size: 1.4rem;
    color: #fff;
    -webkit-text-stroke: 0;
    margin: 0;
  }

  .ss-num {
    font-size: 1rem;
    color: #f09433;
    display: none;
    /* Hide numbers to save space for icons */
  }

  .ss-list-item:hover .ss-item-title,
  .ss-list-item.active .ss-item-title {
    transform: none;
  }

  /* 4. Formatting the Mobile Excerpt and Button */
  .ss-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .ss-mobile-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
  }

  .ss-mobile-btn {
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    transition: background 0.3s ease;
  }

  .ss-mobile-btn:active {
    background: #f09433;
    border-color: #f09433;
  }

  /* Center the View All link */
  .ss-view-all {
    align-self: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 5;
  }

  .ss-bg-text-wrapper {
    display: none;
  }
}

/* === PORTFOLIO SECTION === */
.portfolio-section {
  position: relative;
  width: 100vw;
  background: #020202;
  padding: 10vh 0;
  overflow: hidden;
  z-index: 10;
}

.port-header {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto 5rem auto;
  padding: 0 5vw;
}

.port-subtitle {
  font-family: 'Montserrat', sans-serif;
  color: #e1306c;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.port-title {
  font-family: 'Geist', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Row Layout */
.port-row {
  position: relative;
  width: 100%;
  margin-bottom: 6rem;
}

/* The Background Titles */
.port-massive-text {
  font-family: 'Geist', sans-serif;
  font-size: 14vw;
  font-weight: 800;
  white-space: nowrap;
  color: #333;
  line-height: 0.7;
  margin: 0 0 -4vw 3vw;
  position: relative;
  z-index: 0;
  pointer-events: none;
}

/* The Faded Edge Container */
.scroll-wrapper {
  width: 100%;
  max-width: 1500px;
  /* Matches the width of your port-header */
  margin: 0 auto;
  /* Perfectly centers the carousel on the screen */
  position: relative;
  z-index: 5;
  /* Slightly softer, wider fade gradient to match the new container bounds */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Drag Scroll & Snap Mechanics */
.scroll-track {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 40px;
  /* Adjusts padding to fit nicely inside the container */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.scroll-track::-webkit-scrollbar {
  display: none;
}

.scroll-track.active {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

/* General Card Styling */
.port-card {
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: center;
  border-radius: 20px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.port-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.port-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.port-card:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* Persistent Media Icons */
.media-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.media-icon svg {
  width: 16px;
  height: 16px;
}

/* Cinematic Dark Glass Hover Overlay */
.port-hover-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.port-card:hover .port-hover-content {
  opacity: 1;
  transform: translateY(0);
}

.port-hover-content h4 {
  font-family: 'Geist', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.port-hover-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Navigation Arrows */
.port-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.port-arrow:hover {
  background: #fff;
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 2vw;
}

.next-arrow {
  right: 2vw;
}

/* === CARD ASPECT RATIOS === */
.post-card {
  width: 380px;
  aspect-ratio: 3 / 4;
}

.reel-card {
  width: 340px;
  aspect-ratio: 9 / 16;
}

.carousel-card {
  width: 400px;
  aspect-ratio: 1 / 1;
}

/* .prev-arrow { left: -15px; }
.next-arrow { right: -15px; } */

/* === MOBILE OVERRIDES === */
@media (max-width: 768px) {
  .port-title {
    font-size: 10vw;
  }

  .port-massive-text {
    font-size: 22vw;
    margin-bottom: -6vw;
  }

  .scroll-track {
    padding: 1.5rem 5vw;
    gap: 1rem;
  }

  /* Hide arrows on mobile because users naturally swipe */
  .port-arrow {
    display: none;
  }

  /* Slightly smaller cards for mobile */
  .post-card {
    width: 240px;
  }

  .reel-card {
    width: 200px;
  }

  .carousel-card {
    width: 260px;
  }

  /* Show hover state permanently on mobile */
  .port-hover-content {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  }

  .port-hover-content h4 {
    font-size: 1.2rem;
  }

  .port-card {
    border-color: rgba(255, 255, 255, 0.15);
  }

  .port-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.15);
  }

  .scroll-wrapper {
    max-width: 100%;
    /* Removes the container limit on phones */
  }

  .scroll-track {
    padding: 1.5rem 5vw;
    gap: 1rem;
  }
}

/* === PROFESSIONAL BLOGS SECTION === */
.pro-blogs-section {
  position: relative;
  width: 100vw;
  background: #020202;
  padding: 15vh 5vw;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.pb-container {
  width: 100%;
  max-width: 1250px;
}

/* Header Styling */
.pb-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 3rem;
}

.pb-header-left {
  flex: 1;
}

.pb-subtitle {
  font-family: 'Montserrat', sans-serif;
  color: #f09433;
  /* IG Orange Accent */
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.pb-title {
  font-family: 'Geist', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}

.pb-header-right {
  flex: 0.8;
  max-width: 450px;
}

.pb-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* 3-Column Grid */
.pb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Professional Card Styling */
.pb-card {
  display: flex;
  flex-direction: column;
  background: #0a0a0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

/* Image Container */
.pb-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.pb-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) grayscale(20%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

/* Card Content Area */
.pb-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  /* Pushes footer link to bottom */
}

.pb-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.pb-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pb-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.pb-tag:hover,
a.pb-date:hover {
  color: #f09433;
}

.pb-card-title {
  font-family: 'Geist', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.pb-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  flex: 1;
  /* Fills empty space if titles vary in length */
}

/* Read Article Link */
.pb-read-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.pb-read-link svg {
  transition: transform 0.3s ease;
}

/* === CARD HOVER INTERACTIONS === */
.pb-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pb-card:hover .pb-image-wrap img {
  transform: scale(1.05);
  filter: brightness(1) grayscale(0%);
}

.pb-card:hover .pb-tag {
  background: linear-gradient(90deg, #f09433, #e1306c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pb-card:hover .pb-read-link {
  color: #e1306c;
  /* Turns pink on hover */
}

.pb-card:hover .pb-read-link svg {
  transform: translateX(5px);
}

/* View All Footer */
.pb-footer {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.pb-view-all {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.pb-view-all:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.pb-view-all svg {
  transition: transform 0.3s ease;
}

.pb-view-all:hover svg {
  transform: translateX(4px);
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 900px) {
  .pro-blogs-section {
    padding: 10vh 5vw;
  }

  .pb-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .pb-title {
    font-size: 2.5rem;
  }

  .pb-header-right {
    max-width: 100%;
  }

  /* Stack cards to 1 column */
  .pb-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pb-image-wrap {
    aspect-ratio: 16 / 9;
    /* Slightly wider on mobile */
  }

  .pb-content {
    padding: 1.5rem;
  }

  .pb-card-title {
    font-size: 1.25rem;
  }
}

/* === WORK PROCESS SECTION === */
.process-section {
  position: relative;
  width: 100vw;
  background: #020202;
  padding: 15vh 5vw;
  display: flex;
  justify-content: center;
  z-index: 10;
  overflow: hidden;
}

/* Background Instagram Orbs */
.process-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0;
  /* Starts hidden for GSAP scroll fade */
  z-index: 0;
  pointer-events: none;
}

.p-orb-1 {
  width: 45vw;
  height: 45vw;
  top: 15%;
  left: -15%;
  background: linear-gradient(135deg, #e1304d, #833ab4);
}

.p-orb-2 {
  width: 40vw;
  height: 40vw;
  top: 45%;
  right: -15%;
  background: linear-gradient(135deg, #f09433, #e1306c);

}

.p-orb-3 {
  width: 50vw;
  height: 50vw;
  bottom: -5%;
  left: 15%;
  background: linear-gradient(135deg, #f09433 0%, #e1306c 50%, #833ab4 100%);
  display: none;
}

.pr-container {
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 5;
}

.pr-header {
  text-align: center;
  margin-bottom: 6rem;
}

.pr-subtitle {
  font-family: 'Montserrat', sans-serif;
  color: #e1306c;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.pr-title {
  font-family: 'Geist', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Timeline Architecture */
.pr-timeline-wrapper {
  position: relative;
  width: 100%;
  padding: 2rem 0;
}

/* The SVG Lines */
.pr-line-bg,
.pr-line-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  z-index: 1;
}

.pr-line-fill {
  height: 0%;
  overflow: hidden;
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(225, 48, 108, 0.5));
}

.pr-line-fill svg {
  height: 100%;
  min-height: 1000px;
}

/* Grid Layout for Steps */
.pr-step {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.pr-step:last-child {
  margin-bottom: 0;
}

/* Center Nodes (Dots) */
.pr-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.pr-dot {
  width: 18px;
  height: 18px;
  background: #111;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  z-index: 5;
}

.pr-dot.active {
  background: #fff;
  border-color: #e1306c;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.8);
  transform: scale(1.3);
}

/* Glassmorphic Cards */
.pr-content {
  display: flex;
}

.pr-left {
  justify-content: flex-end;
  text-align: right;
}

.pr-right {
  justify-content: flex-start;
  text-align: left;
}

.pr-card {
  background: rgba(15, 15, 18, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.pr-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pr-num {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.pr-step-title {
  font-family: 'Geist', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}

.pr-step-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Massive Background Text (WORKFLOW) */
.pr-bg-text-wrapper {
  position: absolute;
  top: 12%;
  left: 13%;
  width: 100%;
  transform: translateY(-60%);
  z-index: 1;
  /* Sits behind the container, but above the orbs */
  pointer-events: none;
  /* overflow: hidden; */
}

.pr-bg-text {
  font-family: 'Geist', sans-serif;
  font-size: 14vw;
  font-weight: 800;
  white-space: nowrap;
  color: #333;
  margin: 0;
}

/* Ensure header stays in front of the massive text */
.pr-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 5;
}

/* === MOBILE OVERRIDES (Fixed SVG Line & Dot Alignment) === */
@media (max-width: 900px) {
  .pr-bg-text-wrapper {
    display: none;
  }

  .process-section {
    padding: 10vh 5vw;
  }

  .pr-title {
    font-size: 11vw;
  }

  .pr-header {
    margin-bottom: 4rem;
    text-align: left;
  }

  /* Fix: Position the line in the absolute center of the 40px left column */
  .pr-line-bg,
  .pr-line-fill {
    left: 20px;
    transform: translateX(-50%);
    /* Keeps the 4px line perfectly centered on the 20px mark */
  }

  /* Redefine grid strictly for mobile */
  .pr-step {
    grid-template-columns: 40px 1fr;
    /* Exact sizing: 40px for dots, 1fr for card */
    grid-template-rows: auto;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .pr-empty {
    display: none;
  }

  /* Force the Dot to sit in Column 1 */
  .pr-center {
    grid-column: 1;
    grid-row: 1;
    width: 40px;
    justify-content: center;
  }

  /* Force the Card to sit in Column 2 */
  .pr-content {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
    text-align: left;
  }

  .pr-card {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .pr-step-title {
    font-size: 1.5rem;
  }

  .pr-step-desc {
    font-size: 0.9rem;
  }

  .p-orb-1 {
    height: 600px;
    width: 400px;
  }

  .p-orb-2 {
    height: 500px;
    width: 350px;
  }

  .p-orb-3 {
    height: 700px;
    width: 450px;
  }
}

/* === PREMIUM PACKAGES SECTION === */
.packages-section {
  position: relative;
  width: 100vw;
  background: #020202;
  padding: 25vh 5vw;
  display: flex;
  justify-content: center;
  z-index: 10;
  overflow: hidden;
}

/* Background IG Orbs */
.pkg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  /* GSAP will fade this in */

  z-index: 0;
  pointer-events: none;
}

.pkg-orb-left {
  width: 45vw;
  height: 45vw;
  bottom: 17%;
  left: -10%;
  background: linear-gradient(#cf30e1 50%, #0d00ff 100%);
}

.pkg-orb-right {
  width: 50vw;
  height: 50vw;
  bottom: 17%;
  right: -10%;
  background: linear-gradient(135deg, #f09433 0%, #e1306c 50%, #833ab4 100%);
}

/* Massive Scrolling Text */
.pkg-bg-text-wrapper {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.pkg-bg-text {
  font-family: 'Geist', sans-serif;
  font-size: 15vw;
  font-weight: 800;
  white-space: nowrap;
  color: #333;
  margin: 0;
}

.pkg-container {
  width: 100%;
  max-width: 1300px;
  /* Wide container for 4 columns */
  position: relative;
  z-index: 5;
}

.pkg-header {
  text-align: center;
  margin-bottom: 5rem;
}

.pkg-subtitle {
  font-family: 'Montserrat', sans-serif;
  color: #f09433;
  /* IG Orange */
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.pkg-title {
  font-family: 'Geist', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* 4-Column Grid */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Individual Package Card */
.pkg-card {
  position: relative;
  border-radius: 24px;
  padding: 1px;
  /* Glow border trick */
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

/* The Popular Card Glow */
.pkg-popular-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, #f09433, #e1306c, #833ab4);
  filter: blur(15px);
  opacity: 0.4;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.pkg-card:hover {
  transform: translateY(-10px);
}

.pkg-card:hover .pkg-popular-glow {
  opacity: 0.7;
}

/* Inner Glass Content */
.pkg-card-inner {
  position: relative;
  background: #0a0a0c;
  border-radius: 23px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.pkg-card:hover .pkg-card-inner {
  background: #111115;
}

/* Most Popular Badge */
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f09433, #e1306c);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

/* Top Section */
.pkg-top {
  margin-bottom: 2rem;
}

.pkg-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pkg-price-wrap {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 1rem;
}

.pkg-currency {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e1306c;
  margin-top: 5px;
}

.pkg-price {
  font-family: 'Geist', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.pkg-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

/* Divider */
.pkg-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0 2rem 0;
}

/* Deliverables List */
.pkg-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  flex: 1;
  /* Pushes button to bottom */
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pkg-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.pkg-deliverables svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Action Button */
.pkg-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.pkg-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Highlighted Button for Popular Tier */
.pkg-btn-active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.pkg-btn-active:hover {
  background: #f09433;
  /* Shifts to orange */
  border-color: #f09433;
  color: #fff;
}

/* === RESPONSIVE LAYOUTS === */

/* Laptop / Tablets (2x2 Grid) */
@media (max-width: 1100px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    /* More vertical gap for the popular badge */
  }
}

/* Mobile Devices (1 Column Stack) */
@media (max-width: 768px) {
  .packages-section {
    padding: 10vh 5vw;
  }

  .pkg-title {
    font-size: 11vw;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pkg-card-inner {
    padding: 2rem 1.5rem;
  }

  .pkg-price {
    font-size: 3rem;
  }
}

/* === EDITORIAL SPLIT CONTACT SECTION === */
.contact-editorial {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: #020202;
  padding: 15vh 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
}

.ce-container {
  width: 100%;
  max-width: 1250px;
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}

/* === LEFT COLUMN === */
.ce-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Rotating Badge */
.ce-badge {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ce-badge-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e1306c, #833ab4);
  /* IG Gradient Dot */
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.6);
}

.ce-badge-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateText 15s linear infinite;
}

.ce-badge-text text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  fill: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Typography */
.ce-title {
  font-family: 'Geist', sans-serif;
  font-size: 5.5rem;
  font-weight: 300;
  /* Lighter weight to match the reference image */
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}

.ce-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 80%;
  margin-bottom: 3rem;
}

.ce-email {
  font-family: 'Geist', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.ce-email:hover {
  color: #e1306c;
  /* IG Pink */
}

/* === RIGHT COLUMN === */
.ce-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ce-form {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  /* Wide spacing matching the image */
  width: 100%;
  max-width: 600px;
}

/* Field Containers */
.ce-field {
  position: relative;
  width: 100%;
}

.ce-input {
  width: 100%;
  background: transparent;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  padding: 0.5rem 0;
  outline: none;
  z-index: 2;
  position: relative;
}

.ce-textarea {
  resize: none;
  min-height: 30px;
  overflow: hidden;
  line-height: 1.5;
}

/* Floating Labels */
.ce-label {
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

/* Animation triggers when input has focus OR contains text */
.ce-input:focus~.ce-label,
.ce-input:not(:placeholder-shown)~.ce-label {
  transform: translateY(-1.5rem);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.ce-input:focus~.ce-label {
  color: #f09433;
  /* Highlights with IG Orange when actively typing */
}

/* Bottom Borders */
.ce-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  /* Static grey line */
}

.ce-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f09433, #e1306c, #833ab4);
  /* Instagram Gradient */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Expand gradient line on focus */
.ce-input:focus~.ce-line::after {
  transform: scaleX(1);
}

/* Submit Pill Button */
.ce-submit {
  position: relative;
  width: 100%;
  padding: 1.5rem 0;
  margin-top: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.ce-submit-text {
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.4s ease;
}

.ce-submit-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f09433, #e1306c, #833ab4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.ce-submit:hover {
  border-color: transparent;
}

.ce-submit:hover .ce-submit-bg {
  opacity: 1;
}

/* === MOBILE OVERRIDES === */
@media (max-width: 900px) {
  .contact-editorial {
    padding: 10vh 5vw;
  }

  .ce-container {
    flex-direction: column;
    gap: 4rem;
  }

  .ce-badge {
    margin-bottom: 2rem;
    width: 100px;
    height: 100px;
  }

  .ce-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .ce-desc {
    max-width: 100%;
  }

  .ce-email {
    font-size: 1.5rem;
  }

  .ce-form {
    max-width: 100%;
    gap: 3rem;
  }
}

/* === COMPREHENSIVE GRID FOOTER === */
.footer-comp {
  position: relative;
  width: 100vw;
  background: #020202;
  padding: 12vh 5vw 2vh 5vw;
  overflow: hidden;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fc-glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.08) 0%, rgba(131, 58, 180, 0.03) 50%, transparent 70%);
  filter: blur(100px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.fc-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* === TOP GRID === */
.fc-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 8rem;
}

.ft-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
.footer-brand{
  height: 125px;
  width: 250px;
  margin-bottom: 1.5rem;
}
.footer-brand img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Brand Column */
.fc-brand-name {
  font-family: 'Geist', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.fc-brand-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 400px;
  margin-bottom: 3rem;
}

.fc-contact-block {
  display: flex;
  flex-direction: column;
}

.fc-contact-block .fc-label {
  margin-bottom: 0.5rem;
}

.fc-email {
  font-family: 'Geist', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.fc-email:hover {
  color: #e1306c;
}

.fc-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* Links & Socials Columns */
.fc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.fc-list a {
  font-family: 'Geist', sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.fc-link-hover {
  position: relative;
  display: inline-block;
}

.fc-link-hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #f09433;
  transition: width 0.3s ease;
}

.fc-link-hover:hover {
  color: #fff;
}

.fc-link-hover:hover::after {
  width: 100%;
}

/* Social Links Animation */
.fc-social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-social-link svg {
  width: 18px;
  height: 18px;
  transform: rotate(-45deg);
  transition: transform 0.3s ease, color 0.3s ease;
}

.fc-social-link:hover {
  color: #fff;
  border-bottom-color: #e1306c;
}

.fc-social-link:hover svg {
  color: #e1306c;
  transform: rotate(0deg) translateX(4px);
}

/* === MASSIVE TEXT SLIDE-UP === */
.fc-massive-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.fc-text-mask {
  flex: 1;
  overflow: hidden;
  /* Acts as the "floor" to hide text */
  padding-bottom: 1vw;
  text-align: center;
}

/* Clean, solid #333 text */
.fc-massive-text {
  font-family: 'Geist', sans-serif;
  font-size: 15.5vw;
  font-weight: 800;
  line-height: 0.8;
  color: #333;
  /* The clean, stealthy gray you wanted */
  text-transform: uppercase;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin: 0;
}

/* The animated letters created by GSAP */
.fc-massive-text span {
  display: inline-block;
}

/* Mobile sizing */
@media (max-width: 900px) {
  .fc-massive-text {
    font-size: 16vw;
  }
}

/* Copyright Bottom */
.fc-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-copyright p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* === MOBILE OVERRIDES === */
@media (max-width: 900px) {
  .fc-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
  }

  .fc-email {
    font-size: 1.5rem;
  }

  .fc-massive-text {
    font-size: 14vw;
  }

  .fc-dot {
    margin-bottom: 3vw;
    width: 3vw;
    height: 3vw;
  }

  .fc-copyright {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ======================================================== */
/* === EDITORIAL (CLEAN & CREATIVE) ABOUT PAGE === */
/* ======================================================== */
/* ======================================================== */
/* === PREMIUM PAGE TRANSITION OVERLAY === */
/* ======================================================== */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0f0f0f;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateY(-100%);
  /* Hides it by default */
}

.pt-text {
  font-family: 'Geist', sans-serif;
  font-size: 10vw;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  /* -webkit-text-stroke: 2px rgba(255,255,255,0.2); */
  text-transform: uppercase;
  margin: 0;
  overflow: hidden;
  display: flex;
}

.pt-text .char {
  display: inline-block;
  transform: translateY(110%);
}

/* ======================================================== */
/* === POLISHED EDITORIAL ABOUT PAGE UI === */
/* ======================================================== */

.ea-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 2;
}

/* Polished Labels with Accent Dot */
.ea-label-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.ea-label-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #f09433, #e1306c);
  border-radius: 50%;
}

.ea-label {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  margin: 0;
}

.ea-section-title {
  font-family: 'Geist', sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.ea-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.ea-gradient-text {
  background: linear-gradient(90deg, #f09433, #e1306c, #833ab4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ea-split {
  display: flex;
  gap: 8rem;
}

.ea-split.align-center {
  align-items: center;
}

.ea-left {
  flex: 1;
}

.ea-right {
  flex: 1.2;
}

/* === 1. HERO (Architectural Grid) === */
.ea-hero {
  position: relative;
  width: 100vw;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 15vh;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Subtle Technical Background Grid */
.ea-hero-grid {
  position: absolute;
  inset: 0;
  background-size: 100px 100px;
  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);
  z-index: 1;
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.ea-hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ea-hero-title {
  font-family: 'Geist', sans-serif;
  font-size: 6vw;
  font-weight: 800;
  line-height: 0.9;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 0;
}

.ea-hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.ea-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
}

.ea-hero-desc {
  flex: 1;
  max-width: 550px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 400;
}

.ea-hero-stats {
  display: flex;
  gap: 5rem;
}

.ea-stat h3 {
  font-family: 'Geist', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.ea-accent {
  color: #e1306c;
  font-weight: 400;
}

.ea-stat p {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === 2. STORY (Drop Cap Polish) === */
.ea-story {
  padding: 18vh 0;
}

.ea-drop-cap {
  float: left;
  font-family: 'Geist', sans-serif;
  font-size: 4.5rem;
  line-height: 0.8;
  padding-right: 15px;
  padding-top: 8px;
  color: #fff;
  font-weight: 700;
}

/* === 3. VALUES (Wireframe Grid) === */
.ea-values {
  padding: 15vh 0 20vh 0;
}

.ea-wireframe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
}

.ea-w-card {
  display: flex;
  flex-direction: column;
  padding: 4rem 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.4s ease;
}

.ea-w-card:last-child {
  border-right: none;
}

.ea-w-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.ea-w-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.ea-w-num {
  font-family: 'Geist', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.4s ease;
}

.ea-w-icon {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.4s ease, transform 0.4s ease;
}

.ea-w-card:hover .ea-w-num,
.ea-w-card:hover .ea-w-icon {
  color: #e1306c;
}

.ea-w-card:hover .ea-w-icon {
  transform: scale(1.1);
}

.ea-w-card h3 {
  font-family: 'Geist', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ea-w-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* === 4. FOUNDER === */
.ea-founder {
  padding: 0 0 20vh 0;
}

.ea-image-box {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px;
}

.ea-f-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transform: scale(1.05);
  transition: filter 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ea-image-box:hover .ea-f-img {
  filter: grayscale(0%);
  transform: scale(1);
}

/* Premium Pill Button */
.ea-premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0.8rem 1rem 0.8rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-arrow svg {
  width: 18px;
  height: 18px;
}

.ea-premium-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.ea-premium-btn:hover .btn-arrow {
  transform: rotate(-45deg);
  background: linear-gradient(135deg, #f09433, #e1306c);
  color: #fff;
}

/* === MOBILE OVERRIDES === */
@media (max-width: 900px) {
  .ea-split {
    flex-direction: column;
    gap: 3rem;
  }

  .ea-hero {
    padding-top: 15vh;
    min-height: 85vh;
  }

  .ea-hero-title {
    font-size: 10vw;
  }
  .ea-hero-desc {
    font-size: 1rem;
  }
  .ea-stat h3{
    font-size: 2.5rem;
  }

  .ea-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }

  .ea-hero-stats {
    gap: 3rem;
  }

  .ea-section-title {
    font-size: 2.4rem;
  }
  .ea-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  .ea-story{
    padding: 10vh 0;
  }
  .ea-wireframe-grid {
    grid-template-columns: 1fr;
    border: none;
  }

  .ea-w-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
  }

  .ea-w-card:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ea-founder .ea-left {
    order: 2;
    width: 100%;
  }

  .ea-founder .ea-right {
    order: 1;
  }
  .ea-values {
    padding: 0 0 15vh 0;
  }
}

/* ======================================================== */
/* === PREMIUM ANIMATED BENTO CONTACT PAGE === */
/* ======================================================== */

.c-bento-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  padding: 22vh 5vw 10vh 5vw;
  background: #020202;
  overflow: hidden;
  z-index: 10;
}

/* Background Animated Orbs */
.c-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0;
  /* GSAP reveals */
  z-index: 0;
  pointer-events: none;
}

.c-orb-1 {
  width: 50vw;
  height: 50vw;
  top: 40%;
  right: -20%;
  background: linear-gradient(135deg, #f09433, #e1306c);
}

.c-orb-2 {
  width: 45vw;
  height: 45vw;
  bottom: 10%;
  left: -15%;
  background: linear-gradient(135deg, #3033e1, #dd00ff);
}

.c-orb-3 {
  width: 35vw;
  height: 35vw;
  top: 40%;
  left: 35%;
  background: rgba(240, 148, 51, 0.25);
}

/* Massive Scrolling Text */
.cb-bg-text-wrapper {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.cb-bg-text {
  font-family: 'Geist', sans-serif;
  font-size: 16vw;
  font-weight: 800;
  white-space: nowrap;
  color: #333;
  /* Stealthy texture */
  margin: 0;
}

.cb-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.cb-header {
  margin-bottom: 4rem;
}

.cb-title {
  font-size: 5.5rem;
  line-height: 1.05;
  font-weight: 800;
}

/* === THE BENTO GRID === */
.cb-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: auto auto auto;
  gap: 1.5rem;
  align-content: start;
}

/* Base Card Styling */
.cb-card {
  position: relative;
  background: rgba(15, 15, 18, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  /* border: 1px solid rgba(255, 255, 255, 0.08); */
  border-radius: 24px;
  padding: 3rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  align-self: start;
  width: 100%;
}

.cb-card:hover {
  transform: translateY(-5px);
  /* border-color: rgba(255, 255, 255, 0.2); */
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); */
}

/* Card Glow Follow Effect (Optional CSS-only glow) */
.cb-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(225, 48, 108, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.cb-card:hover .cb-card-glow {
  opacity: 1;
}

.cb-card-title {
  font-family: 'Geist', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

/* 1. Form Wrapper */
.cb-form-wrapper {
  display: flex;
  flex-direction: column;
  grid-column: 2 / 3;
  grid-row: 1 / 4;
}

.cb-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Animated availability pulse */
.cb-pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #4ade80;
  border-radius: 50%;
  position: relative;
  margin-bottom: 2rem;
  z-index: 2;
}

.cb-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #4ade80;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Form Layout */
.cb-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.cb-row {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.cb-field {
  position: relative;
  width: 100%;
  flex: 1;
}

.cb-input {
  width: 100%;
  background: transparent;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #fff;
  padding: 0.8rem 0;
  outline: none;
  z-index: 2;
  position: relative;
}

.cb-select {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.cb-select option {
  background: #111;
  color: #fff;
}

.cb-textarea {
  resize: none;
  min-height: 150px;
  flex: 1;
}

/* Floating Labels */
.cb-label {
  position: absolute;
  left: 0;
  top: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.cb-input:focus~.cb-label,
.cb-input:not(:placeholder-shown)~.cb-label {
  transform: translateY(-1.6rem);
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cb-input:focus~.cb-label {
  color: #f09433;
}

/* Animated Border Lines */
.cb-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.cb-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f09433, #e1306c, #833ab4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cb-input:focus~.cb-line::after {
  transform: scaleX(1);
}

/* Premium Form Submit Button */
.cb-submit {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  margin-top: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.3s ease;
}

.cb-submit-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.cb-submit-text svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  display: none;
}

.cb-submit-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f09433, #e1306c, #833ab4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.cb-submit:hover {
  border-color: transparent;
  transform: translateY(-3px);
}

.cb-submit:hover .cb-submit-bg {
  opacity: 1;
}

.cb-submit:hover .cb-submit-text svg {
  transform: translateX(5px) translateY(-5px);
}

/* 2. Right Stack Architecture */
.cb-right-stack {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Animated Contact Blocks */
.cb-info-card {
  padding: 2.5rem;
}

.cb-info-block {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-decoration: none;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cb-info-block:last-child {
  margin-bottom: 0;
}

.cb-info-block:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.cb-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.4s ease;
}

.cb-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.cb-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cb-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.cb-info-val {
  font-family: 'Geist', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  margin: 0;
  transition: color 0.3s ease;
}

/* SVG KEYFRAME ANIMATIONS */
@keyframes shakeEnv {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }
}

.cb-info-block:hover .c-icon-env {
  animation: shakeEnv 0.5s ease;
}

@keyframes ringPhone {
  0% {
    transform: rotate(0);
  }

  15% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-15deg);
  }

  45% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(5deg);
  }

  90% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0);
  }
}

.cb-info-block:hover .c-icon-phone {
  animation: ringPhone 0.6s ease;
}

@keyframes bouncePin {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.cb-info-block:hover .c-icon-pin {
  animation: bouncePin 0.5s ease infinite;
}

.cb-info-block:hover .cb-icon-wrap {
  color: #e1306c;
  background: rgba(225, 48, 108, 0.15);
}

.cb-info-block:hover .cb-info-val {
  color: #e1306c;
}

.contact-form-notice {
  position: fixed;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(90vw, 520px);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: rgba(15, 15, 18, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.contact-form-notice-success {
  border-color: rgba(240, 148, 51, 0.45);
}

.contact-form-notice-error {
  border-color: rgba(225, 48, 108, 0.5);
}

/* 3. Social Media Magnetic Links */
.cb-social-card {
  padding: 2.5rem;
}

.cb-social-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cb-soc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: #fff;
  transition: all 0.4s ease;
}

.soc-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.soc-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.soc-arrow svg {
  width: 14px;
  height: 14px;
}

.cb-soc-link:hover {
  background: #fff;
  color: #000;
}

.cb-soc-link:hover .soc-arrow {
  background: #000;
  color: #fff;
  transform: rotate(-45deg);
}

/* 4. Cinematic Dark Map Card */
.cb-map-card {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 0;
  min-height: 300px;
  height: 100%;
  display: flex;
}

.cb-map-card iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(1.15) hue-rotate(180deg);
  flex: 1;
}

.cb-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), transparent);
  pointer-events: none;
  z-index: 2;
}

/* === MOBILE OVERRIDES === */
@media (max-width: 900px) {
  .c-bento-section {
    padding: 20vh 5vw;
  }

  .cb-title {
    font-size: 3.8rem;
    margin-bottom: 0rem;
  }

  .cb-grid {
    grid-template-columns: 1fr;
  }

  .cb-form-wrapper {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .cb-right-stack {
    grid-column: 1 / 2;
    grid-row: auto;
  }


  .cb-row {
    flex-direction: column;
    gap: 2.5rem;
  }

  .cb-card {
    padding: 2rem 1.5rem;
  }

  .cb-map-card {
    grid-column: 1 / 2;
    grid-row: auto;
    min-height: 300px;
    padding: 0;
  }

  .cb-info-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cb-bg-text {
    display: none;
  }

  .c-orb-1 {
    height: 400px;
    width: 400px;
    top: -5%;
    right: -30%;
  }

  .c-orb-2 {
    height: 350px;
    width: 350px;
    top: 20%;
  }
}

/* ======================================================== */
/* === UNIFIED BLOG & SIDEBAR STYLES === */
/* ======================================================== */

/* --- 1. HERO SECTIONS --- */
.blog-hero {
  position: relative;
  width: 100vw;
  padding: 25vh 5vw 10vh 5vw;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-hero-container {
  width: 100%;
  max-width: 1250px;
  z-index: 2;
}

.blog-hero-title {
  font-size: 6vw;
  margin-bottom: 1.5rem;
}

.blog-hero-desc {
  max-width: 600px;
  font-size: 1.2rem;
}

.sb-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: 0 5vw 8vh 5vw;
}

.sb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.sb-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.sb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 100%);
}

.sb-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.sb-meta {
  margin-bottom: 2rem;
}

.sb-meta .pb-read-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #e1306c;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.sb-title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}

.sb-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sb-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.sb-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-author-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.sb-author-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sb-author-name a:hover {
  color: #f09433;
}

.sb-author-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- 2. LAYOUT ARCHITECTURE (Listings & Single) --- */
.blog-layout-section {
  position: relative;
  width: 100vw;
  padding: 8vh 5vw 15vh 5vw;
  background: #000;
}

.blog-layout-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}

.blog-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 2 Column Listing Grid */
.blog-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

/* Share & WP Content Split (Single Blog) */
.sb-content-wrapper {
  display: flex;
  gap: 3rem;
  width: 100%;
}

.sb-share-sidebar {
  width: 60px;
  flex-shrink: 0;
  position: sticky;
  top: 130px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.sb-share-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.sb-share-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sb-share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sb-share-btn:hover {
  background: #fff;
  color: #000;
}

/* WP Content Typography */
.wp-content {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.wp-content h2,
.wp-content h3,
.wp-content h4 {
  font-family: 'Geist', sans-serif;
  color: #fff;
  margin: 3rem 0 1.5rem 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.wp-content h2 {
  font-size: 2.5rem;
}

.wp-content h3 {
  font-size: 1.8rem;
}

.wp-content p {
  margin-bottom: 2rem;
}

.wp-content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.wp-content .wp-block-image,
.wp-content .wp-block-gallery,
.wp-content .wp-block-media-text {
  margin: 3rem 0;
}

.wp-content .wp-block-image img,
.wp-content .wp-block-gallery img,
.wp-content .wp-block-media-text img {
  margin: 0;
}

.wp-content .wp-block-gallery {
  display: flex;
  gap: 1rem;
}

.wp-content .wp-block-gallery.has-nested-images figure.wp-block-image {
  flex-grow: 1;
}

.wp-content .wp-block-gallery figcaption,
.wp-content .wp-element-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.8rem;
}

.wp-content .wp-block-media-text {
  gap: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.post-tags {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wp-content blockquote {
  font-family: 'Geist', sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  color: #fff;
  margin: 4rem 0;
  padding-left: 2rem;
  border-left: 4px solid #f09433;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.wp-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.wp-content li {
  margin-bottom: 1rem;
}

/* --- 3. RIGHT SIDEBAR WIDGETS --- */
.blog-sidebar {
  width: 380px;
  flex-shrink: 0;
  position: sticky;
  top: 130px;
  /* Sticks smoothly while reading */
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sidebar-widget {
  width: 100%;
}

.widget-title {
  font-family: 'Geist', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.glass-widget {
  background: rgba(15, 15, 18, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem 2rem;
}

/* Premium Search Pill */
.sidebar-search-form {
  position: relative;
  width: 100%;
  background: rgba(15, 15, 18, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-search-form:focus-within {
  border-color: #f09433;
  box-shadow: 0 0 15px rgba(240, 148, 51, 0.2);
}

.sidebar-search-input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #fff;
  padding: 0.8rem 0;
  outline: none;
}

.sidebar-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.sidebar-search-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.sidebar-search-btn svg {
  width: 22px;
  height: 22px;
}

.sidebar-search-form:focus-within .sidebar-search-btn {
  color: #f09433;
}

/* Categories List */
.widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.widget-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease;
}

.widget-list li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}

.widget-list li a span {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  color: #e1306c;
}

.widget-list li a:hover {
  color: #fff;
}

/* Recent Posts */
.widget-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.recent-post-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.recent-post-item:hover {
  transform: translateX(5px);
}

.recent-post-item img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.recent-post-item:hover img {
  filter: brightness(1);
}

.recent-post-info h4 {
  font-family: 'Geist', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.recent-post-info span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tags */
.widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.widget-tags a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.widget-tags a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.page-numbers {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.page-num,
.page-dots {
  font-family: 'Geist', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s ease;
}

.page-num.active,
.page-num:hover {
  color: #f09433;
}

.page-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-btn:not(:disabled):hover {
  background: #fff;
  color: #000;
}

.page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Progress Bar */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #f09433, #e1306c, #833ab4);
  z-index: 9999999;
}

/* --- 4. MOBILE OVERRIDES --- */
@media (max-width: 1024px) {
  .blog-layout-container {
    flex-direction: column;
    gap: 4rem;
  }

  .blog-sidebar {
    width: 100%;
    position: relative;
    top: 0;
  }

  .sb-content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .sb-share-sidebar {
    flex-direction: row;
    position: static;
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sb-share-label {
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 0;
  }

  .sb-share-links {
    flex-direction: row;
  }
  .blog-layout-section{
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .blog-grid-2col {
    grid-template-columns: 1fr;
  }

  .wp-content blockquote {
    font-size: 1.5rem;
  }
  .wp-content{
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
/* ======================================================== */
/* --- 1. SINGLE BLOG HEADER (CLEAN DESIGN) --- */
/* ======================================================== */

.sb-header-clean {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 15vh 5vw 5vh 5vw;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.sb-header-content {
  max-width: 900px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-bottom: 4rem;
}

.sb-meta {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 1rem;
}

.sb-meta .pb-read-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #e1306c;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.sb-title-clean {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}

/* Author Block */
.sb-author-clean {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.sb-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.sb-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-author-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.sb-author-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sb-author-name a:hover {
  color: #f09433;
}

.sb-author-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Standalone Featured Image */
.sb-featured-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: #0f0f12;
}

.sb-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile Overrides for Header */
@media (max-width: 900px) {
  .sb-header-clean {
    padding: 12vh 5vw 3vh 5vw;
  }
  
  .sb-title-clean {
    margin-bottom: 2rem;
  }
  
  .sb-featured-image {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
}
/* ======================================================== */
/* === SERVICES PAGE STYLES === */
/* ======================================================== */

.sv-hero {
  position: relative;
  width: 100vw;
  padding: 25vh 5vw 10vh 5vw;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.sv-bg-text-wrapper {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.sv-bg-text {
  font-family: 'Geist', sans-serif;
  font-size: 16vw;
  font-weight: 800;
  white-space: nowrap;
  color: #333;
  /* Very subtle dark grey */
  margin: 0;
}

.sv-hero-container {
  width: 100%;
  max-width: 1250px;
  z-index: 2;
  position: relative;
}

.sv-hero-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
}

.sv-hero-desc {
  max-width: 650px;
  font-size: 1.2rem;
}

/* === THE ALTERNATING STACK === */
.sv-stack-section {
  position: relative;
  width: 100vw;
  padding: 10vh 5vw 15vh 5vw;
  background: #000;
  z-index: 5;
}

.sv-stack-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  /* Large spacing between services */
}

.sv-card {
  display: flex;
  align-items: center;
  gap: 5rem;
  position: relative;
  overflow: hidden;
}

/* Alternate Layout Magic */
.sv-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image Column */
.sv-image-col {
  flex: 1;
  position: relative;
}

.sv-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6); */
}

.sv-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(0.8);
  transition: filter 0.5s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sv-card:hover .sv-img-wrap img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* Content Column (Glassmorphism) */
.sv-content-col {
  flex: 1;
  background: rgba(15, 15, 18, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* border: 1px solid rgba(255, 255, 255, 0.08); */
  border-radius: 24px;
  padding: 3.5rem;
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.sv-card:hover .sv-content-col {
  /* border-color: rgba(255, 255, 255, 0.2); */
  transform: translateY(-5px);
}

/* The Massive Background Number */
.sv-num {
  position: absolute;
  top: 0rem;
  right: 2rem;
  font-family: 'Geist', sans-serif;
  font-size: 15rem;
  font-weight: 800;
  line-height: 1;
  color: #111;
  /* -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1); */
  z-index: 0;
  pointer-events: none;
  transition: -webkit-text-stroke 0.4s ease;
}

/* .sv-card:hover .sv-num {
    -webkit-text-stroke: 1px rgba(225, 48, 108, 0.4); 
} */

/* Content Typography */
.sv-title {
  font-family: 'Geist', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.sv-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.sv-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.sv-features li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sv-features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f09433;
  /* IG Orange Dot */
}

/* === SERVICES BACKGROUND ORBS === */
.sv-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 0;
  pointer-events: none;
}

.sv-orb-1 {
  width: 45vw;
  height: 45vw;
  top: 5%;
  left: -15%;
  background: linear-gradient(135deg, #f09433, #e1306c);
}

.sv-orb-2 {
  width: 50vw;
  height: 50vw;
  top: 30%;
  right: -20%;
  background: linear-gradient(135deg, #3033e1, #dd00ff);
}

.sv-orb-3 {
  width: 45vw;
  height: 45vw;
  top: 60%;
  left: -15%;
  background: linear-gradient(135deg, #f09433 0%, #e1306c 50%, #833ab4 100%);
}

.sv-orb-4 {
  width: 50vw;
  height: 50vw;
  bottom: 5%;
  right: -15%;
  background: rgba(225, 48, 108, 0.35);
}

/* Ensure the stack container stays above the orbs */
.sv-stack-container {
  position: relative;
  z-index: 5;
}

/* === MOBILE OVERRIDES === */
@media (max-width: 1024px) {

  .sv-card,
  .sv-card:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
  }

  .sv-stack-container {
    gap: 5rem;
  }

  .sv-image-col {
    width: 100%;
  }

  .sv-content-col {
    width: 100%;
    padding: 2.5rem 1.5rem;
  }

  .sv-num {
    top: 1rem;
    right: 1rem;
    font-size: 10rem;
    opacity: 0.5;
  }

  .sv-title {
    font-size: 1.5rem;
  }
  .sv-desc {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .sv-bg-text-wrapper {
    display: none;
  }

  .sv-orb-1,
  .sv-orb-2,
  .sv-orb-3,
  .sv-orb-4 {
    display: none;
  }
  .sv-hero-desc{
    font-size: 1rem;
  }
  .sv-stack-section{
    padding-top: 0;
  }
  .ea-premium-btn {
    padding: 0.5rem 0.5rem;
    padding-left: 1.2rem;
    font-size: 0.7rem;
    margin-top: 0;
    gap: 0.8rem;
  }
}

/* ======================================================== */
/* === PORTFOLIO PAGE STYLES === */
/* ======================================================== */

.pf-hero {
  position: relative;
  width: 100vw;
  padding: 25vh 5vw 5vh 5vw;
  display: flex;
  justify-content: center;
}

.pf-hero-container {
  width: 100%;
  max-width: 1400px;
  z-index: 2;
}

.pf-hero-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
}

.pf-hero-desc {
  max-width: 600px;
  font-size: 1.2rem;
}

/* === TABS NAVIGATION === */
.pf-main-section {
  width: 100vw;
  padding: 0 5vw 15vh 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pf-container {
  width: 100%;
  max-width: 1400px;
  /* Wide container to support 4 columns */
}

.pf-tabs-wrapper {
  width: 100%;
  max-width: 1400px;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-start;
}

.pf-tabs {
  display: flex;
  gap: 2.5rem;
}

.pf-tab {
  background: transparent;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.pf-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #f09433, #e1306c);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-tab:hover {
  color: #fff;
}

.pf-tab.active {
  color: #fff;
}

.pf-tab.active::after {
  width: 100%;
}

/* === GRID & CARDS === */
.pf-tab-content {
  display: none;
  /* Hidden by default */
  width: 100%;
}

.pf-tab-content.active {
  display: block;
  /* Visible when active */
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 4rem;
}

.pf-card {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 16px;
  background: #111;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transform: translateZ(0);
  /* Hardware acceleration */
}



.pf-card img {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.85);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.pf-card:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Strict Aspect Ratios */
.pf-type-post {
  aspect-ratio: 3 / 4;
}

.pf-type-reel {
  aspect-ratio: 9 / 16;
}

.pf-type-carousel {
  aspect-ratio: 4 / 5;
}

/* Hover Caption Logic (Matches Index.html Port-row) */
.pf-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.pf-card:hover .pf-caption {
  opacity: 1;
  transform: translateY(0);
}

.pf-caption h4 {
  font-family: 'Geist', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.pf-caption p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Media Icons (Reels/Carousels) */
.pf-media-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pf-media-icon svg {
  width: 16px;
  height: 16px;
}

/* Pagination Adjustments */
.pf-pagination {
  justify-content: center;
}

.pf-no-items {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: rgba(255, 255, 255, .6);
  font-size: 1.1rem;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 1024px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-tabs {
    gap: 1.5rem;
  }

  .pf-tab {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .pf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  /* Show captions permanently on mobile since hover is disabled */
  .pf-caption {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  }
  .pf-hero-title{
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  .pf-hero-desc{
    font-size: 1rem;
  }
  .pf-caption{
    display:none;
  }
}

/* ======================================================== */
/* === INSTAGRAM INSIGHTS SECTION === */
/* ======================================================== */
.ig-insights-section {
  position: relative;
  width: 100vw;
  background: #020202;
  padding: 15vh 5vw;
  display: flex;
  justify-content: center;
  z-index: 10;
  overflow: hidden;
}

.ig-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.05) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.ig-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 5;
}

/* Profile Header */
.ig-profile-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ig-profile-pic {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433, #e1306c, #833ab4);
}

.ig-profile-pic img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #020202;
}

.ig-profile-name {
  font-family: 'Geist', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.ig-profile-handle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Top Stats Grid */
.ig-top-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.ig-stat-box {
  background: rgba(15, 15, 18, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.ig-stat-box:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 48, 108, 0.4);
}

.ig-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
}

.ig-stat-val {
  font-family: 'Geist', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* Audience Header */
.ig-audience-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.ig-audience-header h3 {
  font-family: 'Geist', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ig-audience-header svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.4);
}

/* Audience Cards Grid */
.ig-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ig-card {
  background: rgba(15, 15, 18, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.ig-card-title {
  font-family: 'Geist', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
}

.ig-bars-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.ig-gender-wrapper {
  justify-content: center;
}

.ig-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ig-bar-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Progress Bars */
.ig-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.ig-bar-fill {
  height: 100%;
  width: 0%;
  /* Set by JS/GSAP */
  border-radius: 100px;
}

/* Colors pulled from screenshots */
.ig-fill-pink {
  background: #e1306c;
  /* Standard IG Pink */
}

.ig-fill-purple {
  background: #833ab4;
  /* IG Purple for Gender contrast */
}

/* Instagram Gradient Progress Bar */
.ig-fill-gradient {
  /* Extending the gradient so it can smoothly loop */
  background: linear-gradient(90deg, #f09433, #e1306c, #833ab4, #f09433, #e1306c);
  background-size: 300% 100%;
  animation: panGradient 4s linear infinite;
}

/* Keyframes for the continuous flowing gradient effect */
@keyframes panGradient {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.ig-profile-name {
  font-family: 'Geist', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
  /* Added Flexbox to align the name and tick perfectly */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ig-verified-badge {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  /* Prevents the badge from squishing on mobile */
  margin-top: 2px;
  /* Slight optical adjustment to center it with the font */
}

/* === MOBILE OVERRIDES === */
@media (max-width: 900px) {
  .ig-top-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .ig-cards-grid {
    grid-template-columns: 1fr;
  }

  .ig-stat-val {
    font-size: 1.8rem;
  }

  .ig-card {
    padding: 1.8rem;
  }
  
}

@media (max-width: 500px) {
  .ig-top-stats {
    grid-template-columns: 1fr 1fr;
  }
  .ig-profile-name{
    font-size: 1.5rem;
  }
  .ig-profile-handle{
    font-size: 10px;
  }
  .ig-stat-val {
    font-size: 1.8rem;
  }
  .ig-stat-label {
    font-size: 0.50rem;
  }
}