/* ============================================
   Edition 3 - 1PD OPS Summit Styles
   ============================================ */

:root {
  /* Colors */
  --color-primary: #663af3;
  --color-primary-hover: #5530d9;
  --color-gradient-start: #e11d48;
  --color-gradient-end: #f97316;
  --color-bg-dark: #14141f;
  --color-bg-light: #ffffff;
  --color-text-dark: #000000;
  --color-text-light: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.48);
  --color-border: rgba(119, 119, 119, 0.24);
  --color-border-light: rgba(255, 255, 255, 0.24);
  
  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 20px;
  --spacing-xl: 32px;
  --spacing-2xl: 40px;
  --spacing-3xl: 48px;
  
  /* Container */
  --container-max: 1440px;
  --container-padding: 120px;
  
  /* Header */
  --header-height: 84px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 40px;
  --radius-pill: 30px;
  
  /* Transitions */
  --transition-base: 0.3s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition-base);
}

a:hover {
  opacity: 0.8;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   Header Component
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 0.5px solid var(--color-border);
}

.nav {
  position: relative;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav__blur {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container-max);
  height: var(--header-height);
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 1);
  z-index: -1;
}

.nav__logo {
  position: relative;
  z-index: 10;
}

.nav__logo img {
  height: 40px;
  max-width: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
  margin-left: auto;
}

.nav__links a {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark);
  white-space: nowrap;
}

.nav__links-cta {
  display: none;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 12px var(--spacing-xl);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--gradient {
  background: linear-gradient(138.739deg, #e11d48 6.3497%, #f97316 114.69%);
  color: var(--color-text-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  min-width: 174px;
}

.btn--gradient:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: linear-gradient(138.739deg, #f97316 6.3497%, #e11d48 114.69%);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

.btn--outlined-gradient {
  background: transparent;
  color: transparent;
  background-image: linear-gradient(to right, #f97316, #e11d48);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 2px solid var(--color-gradient-start);
  border-radius: var(--radius-pill);
  padding: 12px var(--spacing-lg);
}

.btn--outlined-gradient:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 10;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-dark);
  transition: all var(--transition-base);
}

/* ============================================
   Footer Component
   ============================================ */

.footer {
  background-color: var(--color-bg-dark);
  padding: var(--spacing-xl) 0;
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer__logo img {
  height: 32px;
  width: auto;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.625rem;
  color: var(--color-text-muted);
}

.footer__legal a {
  color: var(--color-text-muted);
}

.footer__separator {
  color: rgba(255, 255, 255, 0.24);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 65rem;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #fdfdfb 0%, #fdfdfb 100%);
}

/* Background Elements */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65rem;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg-grid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1840px;
  height: 1100px;
  opacity: 1;
}

.hero__bg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-blur {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 1116px;
  opacity: 0.48;
  background: radial-gradient(
    ellipse 1008px 446.4px at 70% 90%,
    rgba(26, 179, 255, 0.1) 0%,
    rgba(26, 179, 255, 0) 50%
  );
}

.hero__bg-blur-red {
  position: absolute;
  top: 11.08%;
  right: 1.39%;
  width: 400px;
  height: 280px;
  background: rgba(239, 57, 93, 0.12);
  border-radius: 400px;
  filter: blur(120px);
}

.hero__bg-blur-orange {
  position: absolute;
  top: 33.33%;
  left: -7.64%;
  width: 480px;
  height: 480px;
  background: rgba(255, 148, 41, 0.16);
  border-radius: 640px;
  filter: blur(120px);
}

.hero__bg-blur-purple {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 280px;
  background: rgba(125, 84, 255, 0.12);
  border-radius: 400px;
  filter: blur(120px);
}

/* Hero Content */
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 176px;
  z-index: 1;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--color-bg-dark);
  border-radius: 60px;
  margin-bottom: 32px;
  position: relative;
  box-shadow: 
    0px 20px 25px -5px rgba(244, 63, 94, 0.1),
    0px 8px 10px -6px rgba(244, 63, 94, 0.1);
}

.hero__badge-dot {
  width: 12px;
  height: 12px;
  background: #f43f5e;
  border-radius: 12px;
  flex-shrink: 0;
}

.hero__badge-text {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 16px;
}

/* Title */
.hero__title {
  max-width: 997px;
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__title-main {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 80px;
  color: #14141f;
  margin-bottom: 0;
}

.hero__title-gradient {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 80px;
  background: linear-gradient(90deg, #ef395d 0%, #ff9429 50%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.hero__subtitle {
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  color: #555555;
  line-height: 28px;
  text-align: center;
  margin-bottom: 48px;
  max-width: 800px;
}

/* CTA Button */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(90deg, #e11d48 0%, #f97316 100%);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 
    0px 20px 25px -5px rgba(244, 63, 94, 0.25),
    0px 8px 10px -6px rgba(244, 63, 94, 0.25);
  margin-bottom: 40px;
}

.hero__cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #f97316 0%, #e11d48 100%);
  opacity: 1;
  /* box-shadow: 
    0px 25px 30px -5px rgba(244, 63, 94, 0.3),
    0px 10px 15px -6px rgba(244, 63, 94, 0.3); */
}

.hero__cta-text {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  line-height: 24px;
}

.hero__cta-price {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: var(--color-bg-dark);
  border-radius: 4px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
  line-height: 24px;
}

.hero__cta-icon {
  width: 24px;
  height: 24px;
  color: var(--color-text-light);
  flex-shrink: 0;
}

/* Meta Information */
.hero__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 80px;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero__meta-item img {
  width: 32px;
  height: 32px;
}

.hero__meta-item span {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: #14141f;
}

.hero__meta-divider {
  width: 2px;
  height: 24px;
  background: #e2e8f0;
}

/* Info Cards */
.hero__info {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  padding: 50px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0px 10px 15px -3px rgba(229, 228, 224, 0.4);
  z-index: 2;
}

.hero__info::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1160px;
  height: 240px;
  border-radius: 120px;
  filter: blur(32px);
  opacity: 0.2;
  z-index: -1;
}

.hero__info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 130px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  gap: 12px;
}

.hero__info-number {
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.hero__info-number--purple {
  color: #7d54ff;
}

.hero__info-number--red {
  color: #ef395d;
}

.hero__info-number--orange {
  color: #ff9429;
  opacity: 0.9;
}

.hero__info-number--gray {
  color: #6c6c7f;
}

.hero__info-label {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  color: #14141f;
  text-transform: uppercase;
  line-height: 1;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --container-padding: 60px;
  }

  .hero {
    min-height: 1000px;
  }

  .hero__content {
    padding-top: 140px;
  }

  .hero__title-main,
  .hero__title-gradient {
    font-size: 56px;
    line-height: 64px;
  }

  .hero__subtitle {
    font-size: 20px;
    line-height: 24px;
    padding: 0 24px;
  }

  .hero__info {
    gap: 24px;
    padding: 40px;
  }

  .hero__info-card {
    width: 180px;
    height: 120px;
  }

  .hero__info-number {
    font-size: 32px;
  }

  .hero__info-label {
    font-size: 16px;
  }
}

@media (max-width: 935px) {
  .nav__links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
  }

  .nav__links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links-cta {
    display: block !important;
    margin-top: 8px;
  }

  .nav__links-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .nav__links-cta .btn--gradient {
    min-width: auto;
  }

  .nav__links-cta .btn--outlined-gradient {
    padding: 10px 20px;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px);
  }

  .nav__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -7px);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 24px;
    --header-height: 70px;
  }

  .footer__container {
    flex-direction: column;
    gap: var(--spacing-lg);
    text-align: center;
  }
  
  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 900px;
  }

  .hero__content {
    padding-top: 120px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero__badge {
    padding: 10px 24px;
  }

  .hero__badge-text {
    font-size: 14px;
  }

  .hero__title-main,
  .hero__title-gradient {
    font-size: 40px;
    line-height: 48px;
  }

  .hero__subtitle {
    font-size: 18px;
    line-height: 22px;
  }

  .hero__cta {
    padding: 14px 24px;
  }

  .hero__cta-text {
    font-size: 16px;
  }

  .hero__cta-price {
    font-size: 14px;
  }

  .hero__meta-item img {
    width: 24px;
    height: 24px;
  }

  .hero__meta-item span {
    font-size: 14px;
  }

  .hero__info {
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px;
    width: 90%;
  }

  .hero__info-card {
    width: calc(50% - 8px);
    height: 100px;
  }

  .hero__info-number {
    font-size: 28px;
  }

  .hero__info-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }
  
  .btn {
    padding: 10px var(--spacing-lg);
    font-size: 0.875rem;
  }
  
  .btn--gradient {
    min-width: 140px;
  }

  .nav__links {
    padding: 24px 16px;
    gap: 0;
  }

  .nav__links li {
    padding: 10px 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__links-cta {
    border-bottom: none !important;
  }

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

  .nav__links-cta .btn {
    font-size: 0.875rem;
    padding: 10px 16px;
  }
  
  .footer__legal {
    font-size: 0.5625rem;
  }

  .hero {
    min-height: 800px;
  }

  .hero__content {
    padding-top: 100px;
  }

  .hero__badge {
    padding: 8px 20px;
  }

  .hero__badge-dot {
    width: 10px;
    height: 10px;
  }

  .hero__badge-text {
    font-size: 12px;
  }

  .hero__title-main,
  .hero__title-gradient {
    font-size: 32px;
    line-height: 40px;
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 20px;
  }

  .hero__cta {
    padding: 12px 20px;
    gap: 6px;
  }

  .hero__cta-text {
    font-size: 14px;
  }

  .hero__cta-price {
    font-size: 12px;
    padding: 2px 6px;
  }

  .hero__cta-icon {
    width: 20px;
    height: 20px;
  }

  /* .hero__meta {
    flex-direction: column;
    gap: 12px;
  } */

  .hero__meta-divider {
    width: 2px;
    height: 24px;
  }

  .hero__meta-item img {
    width: 20px;
    height: 20px;
  }

  .hero__meta-item span {
    font-size: 14px;
  }

  .hero__info {
    padding: 20px;
    gap: 12px;
  }

  .hero__info-card {
    width: calc(50% - 6px);
    height: 90px;
  }

  .hero__info-number {
    font-size: 24px;
  }

  .hero__info-label {
    font-size: 12px;
  }

  .hero__info::before {
    width: 800px;
    height: 180px;
  }
}

/* ============================================
   Workshop Section
   ============================================ */

.workshop {
  position: relative;
  padding: 72px 0 144px;
  background: #ffffff;
  overflow: hidden;
}

.workshop__bg-blur {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 148, 41, 0.05);
  border-radius: 7499.249px;
  filter: blur(37.5px);
}

.workshop__bg-blur-bottom {
  position: absolute;
  bottom: -78px;
  right: -26px;
  width: 300px;
  height: 300px;
  background: rgba(255, 148, 41, 0.05);
  border-radius: 7499.249px;
  filter: blur(62.5px);
}

.workshop__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 195px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.workshop__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}

.workshop__label {
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: #ef395d;
  text-transform: uppercase;
  letter-spacing: 1.05px;
  line-height: 15px;
}

.workshop__title {
  font-size: 42px;
  font-weight: var(--font-weight-semibold);
  line-height: 45px;
  color: #14141f;
}

.workshop__title-gradient {
  background: linear-gradient(171.701deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workshop__grid {
  display: grid;
  grid-template-columns: repeat(3, 285px);
  gap: 88px 88px;
  width: 100%;
  max-width: 1050px;
  position: relative;
}

.workshop__card {
  display: flex;
  flex-direction: column;
  width: 285px;
}

.workshop__image {
  position: relative;
  width: 285px;
  height: 199px;
  background: #f3f1ed;
  overflow: hidden;
  margin-bottom: -30px;
  z-index: 1;
}

.workshop__image-bg {
  position: absolute;
  width: 125px;
  height: 125px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg) scaleY(-1);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workshop__image-bg img {
  width: 100%;
  height: 100%;
  display: block;
}

.workshop__image-photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 195px;
  object-fit: contain;
  z-index: 2;
}

.workshop__image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  z-index: 3;
}

.workshop__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px;
  background: #ffffff;
  z-index: 2;
  position: relative;
}

.workshop__linkedin {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workshop__linkedin img {
  width: 100%;
  height: 100%;
}

.workshop__name {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  color: #14141f;
  line-height: 21px;
  margin: 0;
}

.workshop__role {
  font-size: 10px;
  font-weight: var(--font-weight-medium);
  color: #ef395d;
  line-height: 15px;
  margin: 0;
}

.workshop__company {
  font-size: 12px;
  font-weight: var(--font-weight-regular);
  color: #6c6c7f;
  line-height: 12px;
  margin: 0;
}

/* ============================================
   Workshop Responsive Design
   ============================================ */

@media (max-width: 1200px) {
  .workshop__container {
    padding: 0 60px;
  }

  .workshop__grid {
    gap: 60px 40px;
  }
}

@media (max-width: 1024px) {
  .workshop {
    padding: 60px 0 120px;
  }

  .workshop__container {
    padding: 0 40px;
    gap: 48px;
  }

  .workshop__title {
    font-size: 36px;
    line-height: 40px;
  }

  .workshop__grid {
    grid-template-columns: repeat(2, 285px);
    gap: 60px 40px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .workshop {
    padding: 48px 0 96px;
  }

  .workshop__container {
    padding: 0 24px;
    gap: 40px;
  }

  .workshop__label {
    font-size: 12px;
  }

  .workshop__title {
    font-size: 28px;
    line-height: 32px;
  }

  .workshop__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    max-width: 100%;
  }

  .workshop__card {
    width: 100%;
  }

  .workshop__image {
    width: 100%;
    height: 180px;
  }

  .workshop__image img {
    height: 175px;
  }
}

@media (max-width: 480px) {
  .workshop {
    padding: 40px 0 80px;
  }

  .workshop__container {
    padding: 0 16px;
    gap: 32px;
  }

  .workshop__title {
    font-size: 24px;
    line-height: 28px;
  }

  .workshop__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .workshop__image {
    height: 160px;
  }

  .workshop__image img {
    height: 155px;
  }

  .workshop__info {
    padding: 16px;
  }
}

/* ============================================
   Reviews Section
   ============================================ */

.reviews {
  position: relative;
  padding: 80px 0 144px;
  background: #14141f;
  overflow: hidden;
}

.reviews__bg-blur {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(125, 84, 255, 0.05);
  border-radius: 7499.249px;
  filter: blur(37.5px);
}

.reviews__bg-blur-bottom {
  position: absolute;
  bottom: -78px;
  left: -26px;
  width: 300px;
  height: 300px;
  background: rgba(239, 57, 93, 0.05);
  border-radius: 7499.249px;
  filter: blur(62.5px);
}

.reviews__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}

.reviews__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1014px;
}

.reviews__title {
  font-size: 42px;
  font-weight: var(--font-weight-semibold);
  line-height: 45px;
  color: #ffffff;
  margin: 0;
}

.reviews__title-gradient {
  background: linear-gradient(163.736deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews__wrapper {
  overflow: hidden;
  position: relative;
  height: 600px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.reviews__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(20, 20, 31, 1), rgba(20, 20, 31, 0));
  z-index: 1;
  pointer-events: none;
}

.reviews__wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, rgba(20, 20, 31, 1), rgba(20, 20, 31, 0));
  z-index: 1;
  pointer-events: none;
}

.reviews__wrapper-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  animation: reviews-vertical-scroll 20s linear infinite;
  will-change: transform;
}

@keyframes reviews-vertical-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.reviews__wrapper-inner:hover {
  animation-play-state: paused;
}

.reviews__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reviews__card {
  background: url('../assets/testimonial-card-bg.png') no-repeat center center;
  background-size: 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(252, 65, 219, 0.15);
}

.reviews__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.reviews__profile-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviews__profile-info {
  flex: 1;
  min-width: 0;
}

.reviews__profile-info h4 {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 2px 0;
}

.reviews__profile-info p {
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
  margin: 0;
}

.reviews__linkedin-icon {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.reviews__card:hover .reviews__linkedin-icon {
  opacity: 1;
}

.reviews__text {
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.reviews__highlight {
  color: #67b3ff;
}

.reviews__hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reviews__hashtags span {
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  color: #67b3ff;
  line-height: 20px;
  padding: 4px 8px;
}

/* ============================================
   Reviews Responsive Design
   ============================================ */

@media (max-width: 1200px) {
  .reviews__container {
    padding: 0 60px;
  }

  .reviews__wrapper {
    height: 550px;
  }
}

@media (max-width: 1024px) {
  .reviews {
    padding: 60px 0 120px;
  }

  .reviews__container {
    padding: 0 40px;
    gap: 48px;
  }

  .reviews__title {
    font-size: 36px;
    line-height: 40px;
  }

  .reviews__wrapper {
    height: 500px;
  }

  .reviews__wrapper-inner {
    gap: 20px;
  }

  .reviews__column {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .reviews {
    padding: 48px 0 96px;
  }

  .reviews__container {
    padding: 0 24px;
    gap: 40px;
  }

  .reviews__title {
    font-size: 28px;
    line-height: 32px;
  }

  .reviews__wrapper {
    height: auto;
    max-height: 600px;
  }

  .reviews__wrapper-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: reviews-vertical-scroll-mobile 30s linear infinite;
  }

  @keyframes reviews-vertical-scroll-mobile {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-66.66%);
    }
  }

  .reviews__column {
    gap: 20px;
  }

  .reviews__column:nth-child(2),
  .reviews__column:nth-child(3) {
    display: none;
  }

  .reviews__card {
    padding: 20px;
  }

  .reviews__profile-image {
    width: 40px;
    height: 40px;
  }

  .reviews__text {
    font-size: 15px;
    line-height: 22px;
  }

  .reviews__hashtags span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .reviews {
    padding: 40px 0 80px;
  }

  .reviews__container {
    padding: 0 16px;
    gap: 32px;
  }

  .reviews__title {
    font-size: 24px;
    line-height: 28px;
  }

  .reviews__wrapper {
    max-height: 500px;
  }

  .reviews__card {
    padding: 16px;
    gap: 12px;
  }

  .reviews__profile {
    gap: 10px;
  }

  .reviews__profile-image {
    width: 36px;
    height: 36px;
  }

  .reviews__profile-info h4 {
    font-size: 13px;
    line-height: 16px;
  }

  .reviews__profile-info p {
    font-size: 11px;
    line-height: 14px;
  }

  .reviews__linkedin-icon {
    width: 20px;
    height: 20px;
  }

  .reviews__text {
    font-size: 14px;
    line-height: 20px;
  }

  .reviews__hashtags span {
    font-size: 12px;
  }
}

/* ============================================
   What Can You Expect Section
   ============================================ */

.expect {
  position: relative;
  padding: 6.5rem 0;
  background: #ffffff;
  overflow: hidden;
}

.expect__bg-blur {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 7499.25px;
  filter: blur(37.5px);
  opacity: 0.5;
}

.expect__bg-blur--top {
  top: 0;
  right: 0;
  background: #ecfeff;
}

.expect__bg-blur--bottom {
  bottom: -155px;
  left: -132px;
  background: #eef2ff;
}

.expect__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 208px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 114px;
  position: relative;
}

.expect__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.expect__title {
  font-size: 42px;
  font-weight: var(--font-weight-bold);
  line-height: 50px;
  color: #14141f;
  margin: 0;
}

.expect__title span:first-child {
  display: block;
  margin-bottom: 0;
}

.expect__title-gradient {
  background: linear-gradient(159.39deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expect__grid {
  display: grid;
  grid-template-columns: repeat(2, 496px);
  gap: 32px;
  width: 100%;
  max-width: 1024px;
  position: relative;
}

.expect__card {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: 23px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(9.185px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  height: 248px;
}

.expect__card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.expect__card-title {
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
  color: #14141f;
  line-height: normal;
  margin: 0;
}

.expect__card-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: #64748b;
  line-height: 20.895px;
  margin: 0;
}

/* ============================================
   What Can You Expect Responsive Design
   ============================================ */

@media (max-width: 1200px) {
  .expect__container {
    padding: 0 60px;
  }

  .expect__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
  }
}

@media (max-width: 1024px) {
  .expect {
    padding: 120px 0;
  }

  .expect__container {
    padding: 0 40px;
    gap: 80px;
  }

  .expect__title {
    font-size: 36px;
    line-height: 44px;
  }

  .expect__grid {
    max-width: 700px;
  }

  .expect__card {
    height: auto;
    min-height: 220px;
  }

  .expect__card-title {
    font-size: 20px;
  }

  .expect__card-text {
    font-size: 15px;
    line-height: 19px;
  }
}

@media (max-width: 768px) {
  .expect {
    padding: 96px 0;
  }

  .expect__container {
    padding: 0 24px;
    gap: 60px;
  }

  .expect__title {
    font-size: 28px;
    line-height: 36px;
  }

  .expect__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expect__card {
    gap: 18px;
    padding: 20px;
    min-height: 200px;
  }

  .expect__card-icon {
    width: 44px;
    height: 44px;
  }

  .expect__card-title {
    font-size: 18px;
  }

  .expect__card-text {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 480px) {
  .expect {
    padding: 80px 0;
  }

  .expect__container {
    padding: 0 16px;
    gap: 48px;
  }

  .expect__title {
    font-size: 24px;
    line-height: 32px;
  }

  .expect__grid {
    gap: 16px;
  }

  .expect__card {
    gap: 16px;
    padding: 18px;
    min-height: 180px;
  }

  .expect__card-icon {
    width: 40px;
    height: 40px;
  }

  .expect__card-title {
    font-size: 16px;
  }

  .expect__card-text {
    font-size: 13px;
    line-height: 17px;
  }
}

/* ============================================
   Oscars CTA Section
   ============================================ */

.oscars-cta {
  position: relative;
  width: 100%;
  height: 600px;
  background: #020204;
  overflow: hidden;
}

.oscars-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  pointer-events: none;
}

.oscars-cta__award-wrapper {
  position: absolute;
  bottom: 0;
  /* right: -85px;
  height: 544px; */
  z-index: 2;
}

.oscars-cta__award {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.oscars-cta__blur {
  position: absolute;
  width: 444px;
  height: 479px;
  background: url('../images/ellipse-gradient.svg') no-repeat center;
  background-size: contain;
  filter: blur(25px);
  opacity: 0.4;
  pointer-events: none;
}

.oscars-cta__blur--left {
  bottom: 186px;
  left: -627px;
  transform: rotate(115.33deg);
  z-index: 0;
}

.oscars-cta__blur--right {
  top: -261px;
  right: 673px;
  transform: rotate(64.67deg) scaleY(-1);
  z-index: 0;
}

.oscars-cta__content {
  position: relative;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 171px 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 99;
}

.oscars-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 40px;
  width: fit-content;
  margin-bottom: 24px;
  box-shadow: 
    0px 12px 16px -8px rgba(244, 63, 94, 0.1),
    0px 6px 8px -6px rgba(244, 63, 94, 0.1);
}

.oscars-cta__badge-dot {
  width: 8px;
  height: 8px;
  background: #7d54ff;
  border-radius: 8px;
  flex-shrink: 0;
}

.oscars-cta__badge-text {
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  color: #14141f;
  text-transform: uppercase;
  letter-spacing: 0.28px;
  line-height: 14.685px;
}

.oscars-cta__heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 92px;
  max-width: 600px;
  z-index: 3;
}

.oscars-cta__heading-main {
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  line-height: 56px;
  letter-spacing: -1px;
}

.oscars-cta__heading-gradient {
  font-size: 56px;
  font-weight: var(--font-weight-bold);
  line-height: 66px;
  letter-spacing: -1px;
  background: linear-gradient(149.539deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.oscars-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  background: #7d54ff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  width: fit-content;
  transition: all var(--transition-base);
  cursor: pointer;
}

.oscars-cta__button:hover {
  background: #6b47e0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(125, 84, 255, 0.4);
}

.oscars-cta__button span {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  line-height: 24px;
}

.oscars-cta__button svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
  flex-shrink: 0;
}

/* ============================================
   Oscars CTA Responsive Design
   ============================================ */

@media (max-width: 1200px) {
  .oscars-cta__content {
    padding: 140px 60px;
  }

  .oscars-cta__heading {
    margin-bottom: 80px;
  }

  /* .oscars-cta__award-wrapper {
    right: -150px;
    width: 750px;
    height: 450px;
  } */
}

@media (max-width: 1024px) {
  .oscars-cta {
    height: 550px;
  }

  .oscars-cta__content {
    padding: 120px 40px;
  }

  .oscars-cta__heading {
    margin-bottom: 70px;
  }

  .oscars-cta__heading-main {
    font-size: 36px;
    line-height: 48px;
  }

  .oscars-cta__heading-gradient {
    font-size: 48px;
    line-height: 48px;
  }
/* 
  .oscars-cta__award-wrapper {
    right: -100px;
    width: 600px;
    height: 400px;
  } */
}

@media (max-width: 1290px) {
  .oscars-cta__bg {
    width: 115%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .oscars-cta {
    height: 335px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .oscars-cta__bg {
    position: relative;
    inset: auto;
    height: 300px;
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .oscars-cta__content {
    padding: 60px 24px 40px;
    order: 1;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .oscars-cta__badge {
    margin-bottom: 20px;
    padding: 6px 12px;
  }

  .oscars-cta__badge-dot {
    width: 6px;
    height: 6px;
  }

  .oscars-cta__badge-text {
    font-size: 10px;
  }

  .oscars-cta__heading {
    margin-bottom: 40px;
  }

  .oscars-cta__heading-main {
    font-size: 28px;
    line-height: 36px;
  }

  .oscars-cta__heading-gradient {
    font-size: 36px;
    line-height: 36px;
  }

  .oscars-cta__button {
    padding: 10px 24px;
  }

  .oscars-cta__button span {
    font-size: 16px;
  }

  .oscars-cta__button svg {
    width: 20px;
    height: 20px;
  }

  .oscars-cta__award-wrapper {
    display: none;
  }

  .oscars-cta__award {
    display: block;
    width: auto;
    height: 100%;
    max-height: 100%;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 480px) {
  .oscars-cta {
    min-height: 550px;
  }

  .oscars-cta__bg {
    height: 250px;
    margin-top: 20px;
  }

  .oscars-cta__content {
    padding: 50px 16px 30px;
    align-items: center;
    text-align: center;
  }

  .oscars-cta__badge {
    margin-bottom: 16px;
  }

  .oscars-cta__heading {
    margin-bottom: 30px;
  }

  .oscars-cta__heading-main {
    font-size: 24px;
    line-height: 32px;
  }

  .oscars-cta__heading-gradient {
    font-size: 32px;
    line-height: 32px;
  }

  .oscars-cta__button {
    padding: 10px 20px;
    gap: 6px;
  }

  .oscars-cta__button span {
    font-size: 14px;
    line-height: 20px;
  }

  .oscars-cta__button svg {
    width: 18px;
    height: 18px;
  }

  .oscars-cta__award {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   Agenda Section
   ============================================ */

.agenda {
  position: relative;
  padding: 7.5rem 0;
  background: linear-gradient(180deg, #fdfdfb 0%, #f7f6f2 100%);
}

.agenda__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: grid;
  grid-template-columns: 480px 720px;
  gap: 48px;
  align-items: start;
}

.agenda__header {
  height: fit-content;
  position: sticky;
  top: 8rem;
  align-self: start;
  z-index: 10;
}

.agenda__heading {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  line-height: 48px;
  letter-spacing: -1px;
  color: #14141f;
  margin: 0 0 8px 0;
}

.agenda__heading-main {
  color: #14141f;
}

.agenda__heading-gradient {
  background: linear-gradient(152.709deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.agenda__subheading {
  font-size: 24px;
  font-weight: var(--font-weight-regular);
  color: #6c6c7f;
  line-height: normal;
  margin: 0;
}

.agenda__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.agenda__item {
  display: flex;
  align-items: start;
  gap: 13.416px;
  padding: 17.609px;
  background: #ffffff;
  border: 0.839px solid #e9e7e2;
  border-radius: 13.416px;
  box-shadow: 0px 3.354px 20.124px -6.708px rgba(20, 20, 31, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agenda__item:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 24px -6px rgba(20, 20, 31, 0.1);
}

.agenda__time {
  display: flex;
  align-items: center;
  gap: 6.708px;
  padding-top: 1.677px;
  flex-shrink: 0;
}

.agenda__time img {
  width: 11.739px;
  height: 11.739px;
}

.agenda__time span {
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  color: #6c6c7f;
  line-height: 18px;
  white-space: nowrap;
  width: 67.08px;
}

.agenda__title {
  flex: 1;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: #14141f;
  line-height: 20px;
  margin: 0;
}

.agenda__badge {
  flex-shrink: 0;
  padding: 3.354px 10.062px;
  border-radius: 8384.223px;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  line-height: 16px;
  white-space: nowrap;
}

.agenda__badge--gray {
  background: #f3f1ed;
  color: #6c6c7f;
  border: 0.839px solid #f3f1ed;
}

.agenda__badge--keynote {
  background: transparent;
  border: 0.839px solid #ef395d;
  background-image: linear-gradient(138.045deg, #ef395d 0%, #ff9429 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.agenda__badge--panel {
  background: transparent;
  color: #7d54ff;
  border: 0.839px solid #7d54ff;
}

.agenda__badge--workshop {
  background: transparent;
  color: #ff9429;
  border: 0.839px solid #ff9429;
}

/* ============================================
   Agenda Responsive Design
   ============================================ */

@media (max-width: 1200px) {
  .agenda__container {
    padding: 0 60px;
    grid-template-columns: 400px 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .agenda {
    padding: 60px 0 120px;
  }

  .agenda__container {
    padding: 0 40px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .agenda__header {
    position: static;
    top: auto;
    padding-top: 0;
    padding-left: 0;
  }

  .agenda__heading {
    font-size: 42px;
    line-height: 42px;
  }

  .agenda__subheading {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .agenda {
    padding: 48px 0 96px;
  }

  .agenda__header {
    text-align: center;
  }

  .agenda__container {
    padding: 0 24px;
    gap: 40px;
  }

  .agenda__heading {
    font-size: 36px;
    line-height: 36px;
  }

  .agenda__subheading {
    font-size: 18px;
  }

  .agenda__list {
    gap: 12px;
  }

  .agenda__item {
    gap: 12px;
    padding: 16px;
  }


  .agenda__title {
    font-size: 15px;
    line-height: 19px;
  }

  .agenda__badge {
    align-self: flex-start;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .agenda {
    padding: 40px 0 80px;
  }

  .agenda__container {
    padding: 0 16px;
    gap: 32px;
  }

  .agenda__heading {
    font-size: 32px;
    line-height: 32px;
  }

  .agenda__subheading {
    font-size: 16px;
  }

  .agenda__list {
    gap: 10px;
  }

  .agenda__item {
    padding: 14px;
    gap: 10px;
  }

  .agenda__title {
    font-size: 14px;
    line-height: 18px;
  }

  .agenda__badge {
    font-size: 12px;
    padding: 3px 8px;
  }
}

/* ============================================
   Attend Section
   ============================================ */

.attend {
  position: relative;
  padding: 120px 0 120px;
  background: #ffffff;
  overflow: hidden;
}
/* 
.attend__bg-blur {
  position: absolute;
  top: 244px;
  left: 50%;
  transform: translateX(-50%);
  width: 1120px;
  height: 480px;
  background: linear-gradient(148.243deg, #f43f5e 0%, #f97316 50%, #eab308 100%);
  filter: blur(32px);
  opacity: 0.2;
  border-radius: 80px;
  z-index: 0;
} */

.attend__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  z-index: 1;
}

.attend__header {
  text-align: center;
  margin-bottom: 80px;
}

.attend__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 50px;
  color: #14141f;
  margin: 0;
}

.attend__title span {
  display: block;
}

.attend__title-gradient {
  background: linear-gradient(148.243deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.attend__card {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 39px;
  z-index: 2;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 32px 0 rgba(239, 57, 93, 0.1);
}

.attend__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.attend__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  min-height: 180px;
  text-align: center;
}

.attend__item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.attend__item-icon-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.attend__item-icon-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mask-image: linear-gradient(to bottom, black, black);
  -webkit-mask-image: linear-gradient(to bottom, black, black);
}

.attend__item-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  margin: 0;
}

.attend__item-title--purple {
  color: #7d54ff;
}

.attend__item-title--red {
  color: #ef395d;
}

.attend__item-title--orange {
  color: #ff9429;
}

.attend__item-title--gray {
  color: #6c6c7f;
}

.attend__item-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  color: #14141f;
  margin: 4px 0 0;
}

/* ============================================
   Attend Responsive Design
   ============================================ */

@media (max-width: 1200px) {
  .attend__container {
    padding: 0 60px;
  }

  .attend__card {
    padding: 30px;
  }

  .attend__grid {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .attend {
    padding: 80px 0;
  }

  .attend__container {
    padding: 0 40px;
  }

  .attend__header {
    margin-bottom: 60px;
  }

  .attend__title {
    font-size: 36px;
    line-height: 44px;
  }

  .attend__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .attend__item {
    padding: 32px 20px;
    min-height: 160px;
  }
}

@media (max-width: 768px) {
  .attend {
    padding: 60px 0;
  }

  .attend__container {
    padding: 0 24px;
  }

  .attend__header {
    margin-bottom: 48px;
  }

  .attend__title {
    font-size: 32px;
    line-height: 40px;
  }

  .attend__card {
    padding: 24px;
  }

  .attend__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .attend__item {
    padding: 28px 20px;
    min-height: 140px;
  }

  .attend__item-icon {
    width: 60px;
  }

  .attend__item-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .attend__item-title {
    font-size: 22px;
  }

  .attend__item-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .attend {
    padding: 48px 0;
  }

  .attend__container {
    padding: 0 16px;
  }

  .attend__header {
    margin-bottom: 40px;
  }

  .attend__title {
    font-size: 28px;
    line-height: 36px;
  }

  .attend__card {
    padding: 20px;
  }

  .attend__grid {
    gap: 16px;
  }

  .attend__item {
    padding: 24px 16px;
    min-height: 130px;
    gap: 12px;
  }

  .attend__item-icon {
    width: 52px;
  }

  .attend__item-icon-wrapper {
    width: 52px;
    height: 52px;
  }

  .attend__item-title {
    font-size: 20px;
  }

  .attend__item-subtitle {
    font-size: 12px;
  }
}

/* ============================
   Pricing Section
   ============================ */
.pricing {
  position: relative;
  padding: 6.5rem 0;
  background: #fff;
  overflow: hidden;
}

.pricing__bg-blur {
  position: absolute;
  top: 254px;
  left: 50%;
  transform: translateX(-50%) translateX(-248px);
  width: 432px;
  height: 560px;
  background: linear-gradient(to right, #f43f5e, #f97316, #eab308);
  filter: blur(32px);
  opacity: 0.12;
  border-radius: 40px;
  pointer-events: none;
  z-index: 0;
}

.pricing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.pricing__header {
  text-align: center;
  margin-bottom: 80px;
}

.pricing__label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ef395d;
  margin-bottom: 12px;
}

.pricing__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -1.5px;
  color: #14141f;
  margin-bottom: 12px;
}

.pricing__title-gradient {
  background: linear-gradient(172.149deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #555;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 432px);
  gap: 64px;
  justify-content: center;
  align-items: start;
}

.pricing__card {
  position: relative;
  width: 432px;
  height: 40rem;
  border: 1px solid #FF9429;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing__card--early-bird {
  background: #fff;
}

.pricing__card--regular {
  background: #000;
  opacity: 0.5;
}

.pricing__countdown {
  height: 48px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.2);
}

.pricing__countdown--dark {
  background: #171717;
}

.pricing__countdown-timer {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: #7d54ff;
}

.pricing__countdown--dark .pricing__countdown-timer {
  color: #fff;
}

.pricing__card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #14141f;
  text-align: center;
  margin: 30px 0 0;
}

.pricing__card--early-bird .pricing__card-title {
  margin: 31px 0 0;
}

.pricing__card--regular .pricing__card-title {
  margin: 29px 0 0;
}

.pricing__card-title--white {
  color: #fff;
}


.pricing__price-main {
  display: flex;
  align-items: flex-end;
  gap: 7.2px;
  position: relative;
}

.pricing__card--early-bird .pricing__price-main {
  gap: 6px;
}

.pricing__price-amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 68px;
}

.pricing__price-amount--gradient {
  background: linear-gradient(126.549deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__card--early-bird .pricing__price-amount--gradient {
  background: linear-gradient(124.631deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__price-tax {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #14141f;
  bottom: -16px;
  right: -45px;
}

.pricing__card--regular .pricing__price-tax {
  bottom: -16.15px;
  right: -43.4px;
}

.pricing__card--early-bird .pricing__price-tax {
  right: -46.5px;
}

.pricing__price-tax--white {
  color: #fff;
}

.pricing__price-original {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #14141f;
  text-decoration: line-through;
  margin-top: 2px;
}

.pricing__price-original--white {
  color: #e2e8f0;
}

.pricing__card--regular .pricing__price-original {
  color: #e2e8f0;
}

.pricing__divider {
  width: 360px;
  height: 1px;
  margin: 0 auto;
  background-color: #7D54FF;
  border: none;
}

.pricing__divider:first-of-type {
  margin-top: 33px;
}

.pricing__divider:last-of-type {
  margin-top: 32px;
  margin-bottom: 32px;
}

.pricing__card--early-bird .pricing__divider:first-of-type {
  margin-top: 34px;
}

.pricing__card--early-bird .pricing__divider:last-of-type {
  margin-top: 32.8px;
  margin-bottom: 32.8px;
}

.pricing__card--regular .pricing__divider:first-of-type {
  margin-top: 32px;
}

.pricing__card--regular .pricing__divider:last-of-type {
  margin-top: 31.2px;
  margin-bottom: 31.2px;
}

.pricing__features-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #ef395d;
  text-align: center;
  margin: 13px 0 32px;
}

.pricing__card--early-bird .pricing__features-label {
  margin-top: 14px;
}

.pricing__card--regular .pricing__features-label {
  margin-top: 12px;
}

.pricing__features-label--red {
  color: #ef395d;
}

.pricing__features {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding-top: 2rem !important;
}

.pricing__card--early-bird .pricing__features, .pricing__card--regular .pricing__features {
  padding: 0 36px;
  gap: 20px;
}

.pricing__features--white {
  color: #fff;
}

.pricing__feature {
  display: flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #14141f;
}

.pricing__card--early-bird .pricing__feature,
.pricing__card--regular .pricing__feature {
  gap: 5.4px;
}

.pricing__card--early-bird .pricing__feature:nth-child(2),
.pricing__card--regular .pricing__feature:nth-child(2) {
  gap: 7.2px;
}

.pricing__features--white .pricing__feature {
  color: #fff;
}

.pricing__feature img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing__feature strong {
  font-weight: 700;
}

.pricing__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(to right, #e11d48, #f97316);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 2rem 4.5rem;
}

.pricing__cta:hover {
  transform: translateY(-2px);
    background: linear-gradient(to right, #f97316, #e11d48);
  box-shadow: 0 8px 24px rgba(239, 57, 93, 0.3);
}

.pricing__cta span:first-child {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: #fff;
  text-align: center;
}

.pricing__cta-price {
  background: #14141f;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  color: #fff;
  text-align: center;
}

.pricing__cta img {
  width: 20px;
  height: 20px;
}

.pricing__meta {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 70px;
  margin-top: auto;
  padding: 1rem 3rem;
}

.pricing__meta--white {
  color: #fff;
}

.pricing__meta-item {
  display: flex;
  flex-direction: column;
  gap: 5.4px;
}

.pricing__meta-label-row {
  display: flex;
  align-items: center;
}

.pricing__card--early-bird .pricing__meta-item:first-child .pricing__meta-label-row,
.pricing__card--regular .pricing__meta-item:first-child .pricing__meta-label-row {
  gap: 4px;
}

.pricing__card--early-bird .pricing__meta-item:last-child .pricing__meta-label-row,
.pricing__card--regular .pricing__meta-item:last-child .pricing__meta-label-row {
  gap: 5px;
}

.pricing__meta-label-row img {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  filter: invert(39%) sepia(84%) saturate(3270%) hue-rotate(236deg) brightness(101%) contrast(101%);
}

.pricing__meta-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #7d54ff;
}

.pricing__meta-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: #14141f;
}

.pricing__meta--white .pricing__meta-value {
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .pricing {
    padding: 100px 0;
  }

  .pricing__container {
    padding: 0 32px;
  }

  .pricing__header {
    margin-bottom: 60px;
  }

  .pricing__title {
    font-size: 36px;
    line-height: 44px;
  }

  .pricing__subtitle {
    font-size: 20px;
    line-height: 24px;
  }

  .pricing__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
  }

  .pricing__card {
    width: 100%;
    max-width: 432px;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 80px 0;
  }

  .pricing__container {
    padding: 0 24px;
  }

  .pricing__header {
    margin-bottom: 48px;
  }

  .pricing__label {
    font-size: 14px;
  }

  .pricing__title {
    font-size: 32px;
    line-height: 40px;
  }

  .pricing__subtitle {
    font-size: 18px;
    line-height: 22px;
  }

  .pricing__cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing__card {
    max-width: 400px;
    height: auto;
    min-height: 620px;
  }


  .pricing__price-amount {
    font-size: 48px;
    line-height: 60px;
  }

  .pricing__features {
    padding: 0 24px;
    gap: 28px;
  }


  .pricing__meta {
    gap: 50px;
    padding: 0 24px 24px;
  }
}

@media (max-width: 480px) {
  .pricing {
    padding: 60px 0;
  }

  .pricing__container {
    padding: 0 16px;
  }

  .pricing__header {
    margin-bottom: 40px;
  }

  .pricing__label {
    font-size: 12px;
  }

  .pricing__title {
    font-size: 28px;
    line-height: 36px;
  }

  .pricing__subtitle {
    font-size: 16px;
    line-height: 20px;
  }

  .pricing__card {
    max-width: 100%;
    min-height: 580px;
  }

  .pricing__countdown {
    height: 44px;
  }

  .pricing__countdown-timer {
    font-size: 18px;
  }

  .pricing__card-title {
    font-size: 22px;
    margin: 24px 0 0;
  }

  .pricing__price-amount {
    font-size: 42px;
    line-height: 54px;
  }

  .pricing__price-tax {
    font-size: 14px;
    bottom: -12px;
    right: -20px;
  }

  .pricing__price-original {
    font-size: 14px;
  }

  .pricing__divider {
    width: 100%;
    max-width: 300px;
    margin-top: 0.75rem;
  }

  .pricing__features-label {
    font-size: 20px;
    line-height: 24px;
    margin: 12px 0 24px;
  }

  .pricing__features {
    padding: 0 20px;
    gap: 24px;
  }

  .pricing__feature {
    font-size: 13px;
    line-height: 20px;
  }

  .pricing__cta {
    padding: 14px 24px;
    margin: 1rem 3rem;
    gap: 6px;
  }

  .pricing__cta span:first-child {
    font-size: 15px;
  }

  .pricing__cta-price {
    font-size: 11px;
    padding: 2px 6px;
  }

  .pricing__cta img {
    width: 18px;
    height: 18px;
  }

  .pricing__meta {
    gap: 40px;
    padding: 0 20px 20px;
    margin-top: 20px;
  }


  .pricing__meta-value {
    font-size: 13px;
  }
}

/* ============================
   News Section
   ============================ */

.news {
  position: relative;
  padding: 80px 0 144px;
  background: #14141f;
  overflow: hidden;
}

/* Background blur elements */
.news__bg-blur {
  position: absolute;
  border-radius: 400px;
  filter: blur(120px);
}

.news__bg-blur--red {
  top: 11.08%;
  left: 6.25%;
  width: 400px;
  height: 280px;
  background: rgba(239, 57, 93, 0.12);
}

.news__bg-blur--purple {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 280px;
  background: rgba(125, 84, 255, 0.12);
}

.news__bg-blur--orange {
  top: 5.1%;
  right: -7.64%;
  width: 640px;
  height: 480px;
  background: rgba(255, 148, 41, 0.08);
  border-radius: 640px;
}

/* Header */
.news__header {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  z-index: 1;
}

.news__title {
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: var(--font-weight-semibold);
  line-height: 50px;
  color: #ffffff;
  margin: 0;
}

.news__title span {
  display: block;
}

.news__title-gradient {
  background: linear-gradient(152.373deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Edition Container */
.news__edition {
  position: relative;
  max-width: 90rem;
  margin: 0 auto 10rem;
  padding: 0;
  z-index: 1;
}

.news__edition:last-child {
  margin-bottom: 0;
}

.news__edition-header {
  margin-bottom: 3rem;
  padding: 0 7.5rem;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
}

.news__edition-header--right {
  text-align: right;
  right: 0;
}

.news__edition-title {
  font-family: var(--font-primary);
  font-size: 80px;
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  margin: 0 0 16px 0;
  background: linear-gradient(143.277deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news__edition-meta {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  line-height: 28px;
  color: #ffffff;
  margin: 0;
}

/* Thumbnails Grid: 5 columns, slant layout. Each column starts at vertical mid of previous column's first card. 80px row base (320=4 rows, 240=3 rows). */
.news__thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(19, 80px);
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  max-width: 90rem;
  height: 67.5rem; /* 1080px */
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  align-items: start;
  overflow: hidden;
}

/* Edition 01: first column (3 cards) on the right — reverse column order */
.news__edition--01 .news__thumbnails {
  direction: rtl;
}
.news__edition--01 .news__thumbnail {
  direction: ltr;
}

.news__thumbnail {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  border: none;
  background: none;
  min-width: 17.5rem;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.news__thumbnail::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px; /* this controls border thickness */
  background: linear-gradient(24deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}


.news__thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(239, 57, 93, 0.3);
}

/* Col 1: 3 cards. Col 2 starts row 2 (160px=mid of card1). Col 3 starts row 4 (320px). Col 4 starts row 6 (480px). Col 5 starts row 8 (640px). */
.news__edition--01 .news__thumbnail:nth-child(1),
.news__edition--02 .news__thumbnail:nth-child(1) { grid-column: 1; grid-row: 2 / 5; height: 20rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(2),
.news__edition--02 .news__thumbnail:nth-child(2) { grid-column: 1; grid-row: 6 / 9; height: 25.5rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(3),
.news__edition--02 .news__thumbnail:nth-child(3) { grid-column: 1; grid-row: 11 / 12; height: 15rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(4),
.news__edition--02 .news__thumbnail:nth-child(4) { grid-column: 2; grid-row: 3 / 6; height: 15rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(5),
.news__edition--02 .news__thumbnail:nth-child(5) { grid-column: 2; grid-row: 6 / 10; height: 20rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(6),
.news__edition--02 .news__thumbnail:nth-child(6) { grid-column: 2; grid-row: 10 / 13; height: 25.5rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(7),
.news__edition--02 .news__thumbnail:nth-child(7) { grid-column: 3; grid-row: 4 / 8; height: 25.5rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(8),
.news__edition--02 .news__thumbnail:nth-child(8) { grid-column: 3; grid-row: 9 / 12; height: 20rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(9),
.news__edition--02 .news__thumbnail:nth-child(9) { grid-column: 3; grid-row: 13 / 15; height: 15rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(10),
.news__edition--02 .news__thumbnail:nth-child(10) { grid-column: 4; grid-row: 5 / 10; height: 20rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(11),
.news__edition--02 .news__thumbnail:nth-child(11) { grid-column: 4; grid-row: 9 / 13; height: 15rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(12),
.news__edition--02 .news__thumbnail:nth-child(12) { grid-column: 4; grid-row: 12 / 16; height: 20rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(13),
.news__edition--02 .news__thumbnail:nth-child(13) { grid-column: 5; grid-row: 6 / 15; height: 25.5rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(14),
.news__edition--02 .news__thumbnail:nth-child(14) { grid-column: 5; grid-row: 11 / 18; height: 25.5rem; align-self: start; }
.news__edition--01 .news__thumbnail:nth-child(15),
.news__edition--02 .news__thumbnail:nth-child(15) { grid-column: 4; grid-row: 16 / 19; height: 15rem; align-self: start; }

/* Speaker Card Image Styles */
.news__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .news__edition {
    padding: 0;
  }

  .news__thumbnails {
    max-width: 90rem;
    padding: 0 1rem;
  }

  .news__edition-header {
    padding: 0 3.75rem;
  }
}

/* Medium screens 900-1150px range
@media (max-width: 1150px) and (min-width: 900px) {
  .news {
    padding: 60px 0 100px;
  }

  .news__edition {
    padding: 0 40px;
  }

  .news__thumbnails {
    max-width: 1000px;
  }
} */

@media (max-width: 899px) {
  .news {
    padding: 60px 0 80px;
  }

  .news__header {
    margin-bottom: 48px;
  }

  .news__title {
    font-size: 36px;
    line-height: 44px;
  }

  .news__edition {
    padding: 0 24px;
    margin-bottom: 100px;
  }

  .news__edition-title {
    font-size: 54px;
  }

  .news__edition-meta {
    font-size: 18px;
  }

  .news__edition-header {
    padding: 0 24px;
  }

  .news__thumbnails {
    gap: 0.75rem;
  }

  /* .news__edition--01 .news__thumbnail:nth-child(n),
  .news__edition--02 .news__thumbnail:nth-child(n) {
    height: 180px;
  } */

  /* .news__card-image {
    border-radius: 16px;
  } */
}

/* Tablet: switch to 3-col grid earlier at 850px */
@media (max-width: 850px) {
  .news__edition--01 .news__thumbnails {
    direction: ltr;
    padding: 0;
  }

  .news__thumbnails {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    padding: 0;
    max-width: 100%;
    height: auto;
    align-items: start;
    gap: 0.75rem;
    overflow: hidden;
  }

  .news__thumbnail {
    min-width: unset;
  }

  /* Hide items 10+ for 3×3 grid */
  .news__edition--01 .news__thumbnail:nth-child(n+10),
  .news__edition--02 .news__thumbnail:nth-child(n+10) {
    display: none;
  }

  /* Column 1 */
  .news__edition--01 .news__thumbnail:nth-child(1),
  .news__edition--02 .news__thumbnail:nth-child(1) { grid-column: 1; grid-row: 1; width: 100%; height: 12rem; }
  .news__edition--01 .news__thumbnail:nth-child(2),
  .news__edition--02 .news__thumbnail:nth-child(2) { grid-column: 1; grid-row: 2; width: 100%; height: 10rem; }
  .news__edition--01 .news__thumbnail:nth-child(3),
  .news__edition--02 .news__thumbnail:nth-child(3) { grid-column: 1; grid-row: 3; width: 100%; height: 8rem; }
  /* Column 2 */
  .news__edition--01 .news__thumbnail:nth-child(4),
  .news__edition--02 .news__thumbnail:nth-child(4) { grid-column: 2; grid-row: 1; width: 100%; height: 8rem; }
  .news__edition--01 .news__thumbnail:nth-child(5),
  .news__edition--02 .news__thumbnail:nth-child(5) { grid-column: 2; grid-row: 2; width: 100%; height: 12rem; margin-top: -4rem; }
  .news__edition--01 .news__thumbnail:nth-child(6),
  .news__edition--02 .news__thumbnail:nth-child(6) { grid-column: 2; grid-row: 3; width: 100%; height: 10rem; margin-top: -1.5rem; }
  /* Column 3 */
  .news__edition--01 .news__thumbnail:nth-child(7),
  .news__edition--02 .news__thumbnail:nth-child(7) { grid-column: 3; grid-row: 1; width: 100%; height: 12rem; }
  .news__edition--01 .news__thumbnail:nth-child(8),
  .news__edition--02 .news__thumbnail:nth-child(8) { grid-column: 3; grid-row: 2; width: 100%; height: 10rem; }
  .news__edition--01 .news__thumbnail:nth-child(9),
  .news__edition--02 .news__thumbnail:nth-child(9) { grid-column: 3; grid-row: 3; width: 100%; height: 8rem; }

  /* .news__card-image {
    border-radius: 12px;
  } */

  /* .news__thumbnail::before {
    border-radius: 12px;
  } */

  .news__edition-header {
    position: relative;
    padding: 0;
    margin-bottom: 2rem;
  }

  .news__edition-title {
    font-size: 42px;
  }

  .news__edition-meta {
    font-size: 16px;
    line-height: 20px;
  }
}

/* Mobile layout */
@media (max-width: 768px) {
  .news {
    padding: 48px 0 60px;
  }

  .news__header {
    margin-bottom: 40px;
    padding: 0;
  }

  .news__title {
    font-size: 28px;
    line-height: 36px;
  }

  .news__edition {
    padding: 0 16px;
    margin-bottom: 80px;
  }

  .news__edition-title {
    font-size: 32px;
    line-height: 36px;
  }

  .news__edition-meta {
    font-size: 14px;
    line-height: 18px;
  }

  .news__edition-header {
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .news__thumbnails {
    gap: 0.5rem;
  }

  /* Scale down card heights */
  .news__edition--01 .news__thumbnail:nth-child(1),
  .news__edition--02 .news__thumbnail:nth-child(1) { height: 10rem; }
  .news__edition--01 .news__thumbnail:nth-child(2),
  .news__edition--02 .news__thumbnail:nth-child(2) { height: 8.5rem; }
  .news__edition--01 .news__thumbnail:nth-child(3),
  .news__edition--02 .news__thumbnail:nth-child(3) { height: 6.5rem; }
  .news__edition--01 .news__thumbnail:nth-child(4),
  .news__edition--02 .news__thumbnail:nth-child(4) { height: 6.5rem; }
  .news__edition--01 .news__thumbnail:nth-child(5),
  .news__edition--02 .news__thumbnail:nth-child(5) { height: 10rem; margin-top: -3rem; }
  .news__edition--01 .news__thumbnail:nth-child(6),
  .news__edition--02 .news__thumbnail:nth-child(6) { height: 8.5rem; }
  .news__edition--01 .news__thumbnail:nth-child(7),
  .news__edition--02 .news__thumbnail:nth-child(7) { height: 10rem; }
  .news__edition--01 .news__thumbnail:nth-child(8),
  .news__edition--02 .news__thumbnail:nth-child(8) { height: 8.5rem; }
  .news__edition--01 .news__thumbnail:nth-child(9),
  .news__edition--02 .news__thumbnail:nth-child(9) { height: 6.5rem; }

  .news__thumbnail {
    border-radius: 8px;
  }

  .news__card-image {
    border-radius: 8px;
  }

  .news__thumbnail::before {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .news {
    padding: 40px 0 60px;
  }

  .news__header {
    margin-bottom: 32px;
  }

  .news__title {
    font-size: 24px;
    line-height: 32px;
  }

  .news__edition {
    padding: 0 12px;
    margin-bottom: 60px;
  }

  .news__edition-title {
    font-size: 28px;
    line-height: 32px;
  }

  .news__edition-meta {
    font-size: 12px;
    line-height: 16px;
  }

  .news__edition-header {
    padding: 0;
    margin-bottom: 1.25rem;
  }

  .news__thumbnails {
    gap: 0.375rem;
  }

  /* Scale down card heights for small screens */
  .news__edition--01 .news__thumbnail:nth-child(1),
  .news__edition--02 .news__thumbnail:nth-child(1) { height: 8rem; }
  .news__edition--01 .news__thumbnail:nth-child(2),
  .news__edition--02 .news__thumbnail:nth-child(2) { height: 6.5rem; }
  .news__edition--01 .news__thumbnail:nth-child(3),
  .news__edition--02 .news__thumbnail:nth-child(3) { height: 5rem; }
  .news__edition--01 .news__thumbnail:nth-child(4),
  .news__edition--02 .news__thumbnail:nth-child(4) { height: 5rem; }
  .news__edition--01 .news__thumbnail:nth-child(5),
  .news__edition--02 .news__thumbnail:nth-child(5) { height: 8rem; }
  .news__edition--01 .news__thumbnail:nth-child(6),
  .news__edition--02 .news__thumbnail:nth-child(6) { height: 6.5rem;  }
  .news__edition--01 .news__thumbnail:nth-child(7),
  .news__edition--02 .news__thumbnail:nth-child(7) { height: 8rem; }
  .news__edition--01 .news__thumbnail:nth-child(8),
  .news__edition--02 .news__thumbnail:nth-child(8) { height: 6.5rem; }
  .news__edition--01 .news__thumbnail:nth-child(9),
  .news__edition--02 .news__thumbnail:nth-child(9) { height: 5rem; }

  .news__thumbnail::before {
    border-radius: 8px;
  }
}

/* ============================
   Gallery Section
   ============================ */

#gallery-section {
  padding: 80px 150px;
  background-color: #f5f5f5;
  overflow: hidden;
}

#gallery-section .section-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 50px;
  color: #14141f;
  text-align: center;
  margin-bottom: 48px;
  font-family: 'Outfit', sans-serif;
}

#gallery-section .section-title .highlight {
  background: linear-gradient(133.324deg, #EF395D 0%, #FF9429 40%, #7D54FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

#gallery-section .gallery-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  width: fit-content;
  min-width: fit-content;
  max-width: none;
  padding: 32px 0;
}

.gallery-carousel {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

#gallery-section .gallery-container .gallery-grid {
  display: grid;
  height: 450px;
  gap: 10px;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
}

#gallery-section .gallery-container .gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.18);
  /* background: #181028; */
  display: block;
  transition: transform 0.3s ease;
}

#gallery-section .gallery-container .gallery-grid img:hover {
  transform: scale(1.05);
}

.gallery-video-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-video-link img {
  transition: transform 0.3s ease;
}

.gallery-video-link:hover img {
  transform: scale(1.05);
}

.gallery-play-icon {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  transition: transform 0.3s ease;
}

.gallery-play-icon img {
  width: 48px;
  height: 48px;
  display: block;
}

.gallery-video-link:hover .gallery-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-container-1 .gallery-grid:nth-child(1) {
  width: 200px;
  grid-template-rows: 60% 40%;
}

.gallery-container-1 .gallery-grid:nth-child(2) {
  width: 300px;
  grid-template-rows: 40% 60%;
}

.gallery-container-1 .gallery-grid:nth-child(3) {
  width: 400px;
  grid-template-rows: 50% 50%;
}

.gallery-container-1 .gallery-grid:nth-child(4) {
  width: 200px;
  grid-template-rows: 30% 70%;
}

.gallery-container-1 .gallery-grid:nth-child(5) {
  width: 150px;
  grid-template-rows: 50% 50%;
}

.gallery-container-1 .gallery-grid:nth-child(6) {
  width: 450px;
  grid-template-rows: 60% 40%;
}

.gallery-container-2 .gallery-grid:nth-child(1) {
  width: 200px;
  grid-template-rows: 30% 70%;
}

.gallery-container-2 .gallery-grid:nth-child(2) {
  width: 450px;
  grid-template-rows: 50% 50%;
}

.gallery-container-2 .gallery-grid:nth-child(3) {
  width: 250px;
  grid-template-rows: 60% 40%;
}

.gallery-container-2 .gallery-grid:nth-child(4) {
  width: 308px;
  grid-template-rows: 40% 60%;
}

.gallery-container-2 .gallery-grid:nth-child(5) {
  width: 180px;
  grid-template-rows: 60% 40%;
}

.gallery-container-2 .gallery-grid:nth-child(6) {
  width: 260px;
  grid-template-rows: 35% 65%;
}

.gallery-container-3 .gallery-grid:nth-child(1) {
  width: 260px;
  grid-template-rows: 60% 40%;
}

.gallery-container-3 .gallery-grid:nth-child(2) {
  width: 200px;
  grid-template-rows: 35% 65%;
}

.gallery-container-3 .gallery-grid:nth-child(3) {
  width: 300px;
  grid-template-rows: 60% 40%;
}

@media (max-width: 900px) {
  #gallery-section {
    padding: 60px 40px;
  }

  #gallery-section .section-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  #gallery-section .gallery-container .gallery-grid {
    height: 260px;
    width: 120px;
  }

  #gallery-section .gallery-container .gallery-grid img {
    border-radius: 5px;
  }
}

@media (max-width: 600px) {
  #gallery-section {
    padding: 40px 20px;
  }

  #gallery-section .section-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  #gallery-section .gallery-container {
    gap: 5px;
    padding: 16px 0;
  }

  #gallery-section .gallery-container .gallery-grid {
    height: 250px;
    width: 150px;
    gap: 5px;
  }

  .gallery-carousel {
    gap: 5px;
  }
}

/* ============================================
   Meet the Makers CTA Section
   ============================================ */

.meet-makers-cta {
  position: relative;
  padding: 80px var(--container-padding);
  background: linear-gradient(90deg, rgba(20, 20, 31, 0.24) 0%, rgba(20, 20, 31, 0.24) 100%),
              linear-gradient(111.251deg, rgb(20, 20, 31) 0%, rgb(19, 15, 37) 25%, rgb(17, 10, 43) 50%, rgb(29, 18, 68) 75%, rgb(36, 16, 106) 100%);
  overflow: hidden;
}

.meet-makers-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.meet-makers-cta__bg-grid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg) scaleY(-1);
  width: 1200px;
  height: 569px;
  opacity: 0.25;
}

.meet-makers-cta__bg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-makers-cta__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
}

/* Image Section */
.meet-makers-cta__image {
  flex: 0 0 588px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meet-makers-cta__image img {
  width: 100%;
  height: auto;
  max-width: 588px;
  object-fit: contain;
}

/* Content Section */
.meet-makers-cta__content {
  flex: 0 0 577px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.meet-makers-cta__title {
  font-size: 40px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin: 0;
}

.meet-makers-cta__title-gradient {
  display: block;
  background: linear-gradient(90deg, #ef395d 0%, #ff9429 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.meet-makers-cta__title-white {
  display: block;
  color: var(--color-text-light);
}

.meet-makers-cta__meta {
  display: flex;
  align-items: center;
  gap: 14.769px;
  font-size: 22.154px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
}

.meet-makers-cta__meta-item {
  display: flex;
  align-items: center;
  gap: 7.385px;
}

.meet-makers-cta__meta-item img {
  width: 20.865px;
  height: 22.154px;
  filter: brightness(0) invert(1);
}

.meet-makers-cta__meta-divider {
  opacity: 0.5;
}

.meet-makers-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(90deg, #e11d48 0%, #f97316 100%);
  border-radius: 12px;
  color: var(--color-text-light);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  align-self: flex-start;
}

.meet-makers-cta__button:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #f97316 0%, #e11d48 100%);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.3);
  opacity: 1;
}

.meet-makers-cta__button-price {
  background: var(--color-bg-dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.meet-makers-cta__button img {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 1280px) {
  .meet-makers-cta {
    padding: 60px 60px;
  }

  .meet-makers-cta__container {
    gap: 60px;
  }

  .meet-makers-cta__image {
    flex: 0 0 480px;
  }

  .meet-makers-cta__content {
    flex: 0 0 480px;
  }

  .meet-makers-cta__title {
    font-size: 36px;
  }
}

@media (max-width: 1024px) {
  .meet-makers-cta {
    padding: 60px 40px;
  }

  .meet-makers-cta__container {
    flex-direction: column;
    gap: 60px;
  }

  .meet-makers-cta__image {
    flex: none;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .meet-makers-cta__content {
    flex: none;
    width: 100%;
    max-width: 600px;
    text-align: center;
    align-items: center;
  }

  .meet-makers-cta__title {
    font-size: 32px;
  }

  .meet-makers-cta__meta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .meet-makers-cta {
    padding: 40px 20px;
  }

  .meet-makers-cta__image {
    max-width: 100%;
  }

  .meet-makers-cta__title {
    font-size: 28px;
  }

  .meet-makers-cta__meta {
    font-size: 16px;
    flex-wrap: wrap;
  }

  .meet-makers-cta__meta-item {
    gap: 6px;
  }

  .meet-makers-cta__meta-item img {
    width: 16px;
    height: 16px;
  }

  .meet-makers-cta__button {
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .meet-makers-cta {
    padding: 40px 16px;
  }

  .meet-makers-cta__title {
    font-size: 24px;
  }

  .meet-makers-cta__meta {
    font-size: 14px;
    gap: 10px;
  }

  .meet-makers-cta__button {
    width: 80%;
    margin: auto;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ============================================
   Sponsor Section
   ============================================ */

.sponsor {
  position: relative;
  min-height: 550px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background */
.sponsor__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sponsor__bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 860.87px;
  overflow: hidden;
}

.sponsor__bg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sponsor__bg-blur {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 1116px;
  opacity: 0.48;
  background: radial-gradient(ellipse 100.8% 44.64% at 70% 90%, rgba(26, 179, 255, 0.1) 0%, rgba(26, 179, 255, 0) 50%);
  pointer-events: none;
}

.sponsor__bg-blur-red {
  position: absolute;
  top: 11.08%;
  left: 1.39%;
  right: 79.17%;
  bottom: 65.58%;
  background: rgba(239, 57, 93, 0.12);
  border-radius: 400px;
  filter: blur(120px);
}

.sponsor__bg-blur-orange {
  position: absolute;
  top: 33.33%;
  left: auto;
  right: -7.64%;
  bottom: 26.67%;
  width: 82%;
  background: rgba(255, 148, 41, 0.16);
  border-radius: 640px;
  filter: blur(120px);
}

.sponsor__bg-blur-purple {
  position: absolute;
  top: 30%;
  left: 39.58%;
  right: 40.97%;
  bottom: 46.67%;
  background: rgba(125, 84, 255, 0.12);
  border-radius: 400px;
  filter: blur(120px);
}

/* Content */
.sponsor__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
}

/* Logo */
.sponsor__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.sponsor__logo img {
  width: 150px;
  height: 56px;
}

/* Heading */
.sponsor__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  text-align: center;
}

.sponsor__heading-main {
  font-size: 38px;
  color: #14141f;
  text-transform: capitalize;
}

.sponsor__heading-gradient {
  font-size: 42px;
  font-weight: var(--font-weight-semibold);
  background: linear-gradient(159.829deg, #ef395d 0%, #ff9429 40%, #7d54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sponsor__heading-gradient img {
  filter: brightness(0);
}
/* Description */
.sponsor__description {
  max-width: 888px;
  margin-bottom: 48px;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: var(--font-weight-regular);
  line-height: 35px;
  color: #14141f;
  text-align: center;
}

/* CTA Button */
.sponsor__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  height: 58px;
  background: linear-gradient(145.52deg, #e11d48 6.3497%, #f97316 114.69%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 40px;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor__cta:hover {
   background: linear-gradient(145.52deg, #f97316 6.3497%, #e11d48 114.69%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.3);
  opacity: 1;
}

.sponsor__cta img {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .sponsor {
    min-height: 550px;
  }

  .sponsor__content {
    padding: 80px 40px;
  }

  .sponsor__logo {
    margin-bottom: 40px;
  }

  .sponsor__heading-main {
    font-size: 32px;
  }

  .sponsor__heading-gradient {
    font-size: 36px;
  }

  .sponsor__description {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
  }

  .sponsor__cta {
    font-size: 20px;
    height: 52px;
    padding: 10px 28px;
  }
}

@media (max-width: 768px) {
  .sponsor {
    min-height: 400px;
  }

  .sponsor__content {
    padding: 60px 24px;
  }

  .sponsor__logo {
    margin-bottom: 32px;
  }

  .sponsor__logo img {
    width: 120px;
    height: 45px;
  }

  .sponsor__heading-main {
    font-size: 26px;
  }

  .sponsor__heading-gradient {
    font-size: 30px;
  }

  .sponsor__description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 32px;
  }

  .sponsor__cta {
    font-size: 18px;
    height: 48px;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  .sponsor {
    min-height: 400px;
  }

  .sponsor__content {
    padding: 40px 16px;
  }

  .sponsor__logo {
    margin-bottom: 24px;
  }

  .sponsor__logo img {
    width: 100px;
    height: 37px;
  }

  .sponsor__heading {
    gap: 6px;
    margin-bottom: 24px;
  }

  .sponsor__heading-main {
    font-size: 22px;
  }

  .sponsor__heading-gradient {
    font-size: 24px;
    display: block;
  }

  .sponsor__heading-gradient img {
     width: 80px;
     margin: auto;
     height: 32px;
  }

  .sponsor__description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .sponsor__cta {
    font-size: 16px;
    height: 44px;
    padding: 10px 20px;
    width: 100%;
    max-width: 280px;
  }

  .sponsor__cta img {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
  background: linear-gradient(90deg, rgba(20, 20, 31, 0.24) 0%, rgba(20, 20, 31, 0.24) 100%), 
              linear-gradient(110.58deg, rgb(36, 16, 106) 0%, rgb(29, 18, 68) 25%, rgb(17, 10, 43) 50%, rgb(19, 15, 37) 75%, rgb(20, 20, 31) 100%);
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section__card {
  width: 100%;
  max-width: 1200px;
  height: 360px;
  background: #000000;
  border: 1px solid #EF395D;
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  position: relative;
}

.contact-section__map {
  width: 600px;
  height: 100%;
  flex-shrink: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section__map iframe {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.contact-section__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  padding: 0 80px 0 60px;
}

.contact-section__title {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  line-height: normal;
  color: #FFFFFF;
  margin: 0;
}

.contact-section__title-highlight {
  color: #FF9429;
}

.contact-section__text {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: normal;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-section__email {
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  transition: color 0.3s ease;
}

.contact-section__email:hover {
  color: #FF9429;
  opacity: 1;
}

/* Contact Section - Responsive */
@media (max-width: 1240px) {
  .contact-section__card {
    max-width: 95%;
  }
  
  .contact-section__content {
    padding: 0 40px 0 40px;
  }
}

@media (max-width: 992px) {
  .contact-section {
    padding: 80px 20px;
  }
  
  .contact-section__card {
    flex-direction: column;
    height: auto;
    max-width: 100%;
  }
  
  .contact-section__map {
    width: 100%;
    height: 300px;
    padding: 20px;
  }
  
  .contact-section__content {
    padding: 20px 30px 30px;
    gap: 8px;
  }
  
  .contact-section__title {
    font-size: 28px;
  }
  
  .contact-section__text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 16px;
  }
  
  .contact-section__card {
    border-radius: 16px;
  }
  
  .contact-section__map {
    height: 250px;
    padding: 16px;
  }
  
  .contact-section__map iframe {
    border-radius: 16px;
  }
  
  .contact-section__content {
    padding: 16px 20px 24px;
  }
  
  .contact-section__title {
    font-size: 24px;
  }
  
  .contact-section__text {
    font-size: 13px;
  }
}


.pricing__price-wrapper{
  margin:auto; 

}