/* =======================================
   INNER PAGES — PREMIUM STYLESHEET
   inner.css (imported by event detail pages)
   ======================================= */

/* ---- CURSOR GLOW ---- */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.08s linear;
  will-change: transform;
}

/* ---- INNER HERO ---- */
.ip-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 1;
  padding-top: 82px;
}

@media (max-width: 767px) {
  .ip-hero {
    max-height: calc(100vh - 100px);
  }
}

.ip-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.05);
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
}

.ip-hero .desktop-video {
  display: block;
  object-fit: cover;
}

.ip-hero .mobile-video {
  display: none;
  object-fit: contain;
  background: #02071c;
}

.ip-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 40, 0.35);
  z-index: 1;
}


.ip-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-tag {
  margin-bottom: 28px;
  animation: heroRevealStagger 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes heroRevealStagger {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.ip-hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: heroRevealStagger 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.ip-hero-title span {
  background: linear-gradient(90deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ip-hero-sub {
  font-size: 18px;
  color: #ffffff;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 42px;
  font-weight: 300;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  animation: heroRevealStagger 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-buttons {
  animation: heroRevealStagger 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

/* Scroll hint */
.ip-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.3);
  animation: scrollBounce 2s ease-in-out infinite;
}

.ip-scroll-hint svg {
  width: 28px;
  height: 28px;
}

@keyframes scrollBounce {

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

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

/* ---- INTRO STRIP ---- */
.ip-intro {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ip-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.ip-intro-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.ip-intro-text h2 span {
  color: #60a5fa;
}

.ip-intro-text p {
  font-size: 16px;
  color: #9ca3af;
  line-height: 1.8;
  font-weight: 300;
}

.ip-stats {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  border-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  max-width: 240px;
  width: 100%;
  min-width: 220px;
  text-align: center;
}

.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---- FEATURES SECTION ---- */
.ip-features {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.2);
}

.section-heading {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.section-heading span {
  color: #60a5fa;
}

.section-sub {
  text-align: center;
  color: #9ca3af;
  font-size: 16px;
  margin-top: -40px;
  margin-bottom: 60px;
  font-weight: 300;
}

.ip-packages .section-heading,
.ip-packages .section-sub,
.premium-section h2,
.premium-section .subhead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

/* Premium affiliate hero text block */
.premium-affiliate-copy {
  position: relative;
  padding: 120px 0;
}

.premium-affiliate-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(102, 126, 234, 0.15), transparent 45%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.premium-copy-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.premium-copy-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.premium-copy-topline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.premium-copy-content h2 {
  color: #ffffff;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 28px;
}

.premium-copy-content h2 .highlight {
  background: linear-gradient(90deg, #81a2ff, #c5b6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.premium-copy-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 300;
}

.premium-copy-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .premium-affiliate-copy {
    padding: 80px 16px;
  }

  .premium-copy-content h2 {
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.2;
  }

  .premium-copy-content p {
    font-size: 15px;
    line-height: 1.75;
  }
}

.company-address {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.address-left h3 {
  font-size: 20px;
  color: #8fa4ff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.company-name {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.company-uin {
  font-size: 14px;
  color: #8892c7;
  margin: 8px 0 20px;
}

.address-lines p {
  font-size: 16px;
  color: #cfd8ff;
  line-height: 1.6;
  margin: 0 0 8px;
}

.address-right img {
  width: 100%;
  border-radius: 16px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.address-right img:hover {
  opacity: 1;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .company-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .address-right {
    order: -1;
  }

  .company-address {
    margin-top: 60px;
    padding-top: 30px;
  }

  .address-left h3 {
    font-size: 18px;
  }

  .address-lines p {
    font-size: 15px;
  }
}

.company-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.company-uin {
  font-size: 14px;
  color: #8892c7;
  margin-bottom: 20px;
}

.address-lines p {
  font-size: 16px;
  color: #cfd8ff;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .company-address {
    margin-top: 60px;
    padding-top: 30px;
  }

  .company-address h3 {
    font-size: 18px;
  }

  .address-content {
    max-width: 100%;
  }

  .address-lines p {
    font-size: 15px;
  }
}

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

.feature-card {
  background: linear-gradient(180deg, #13151f 0%, #0b0d14 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.25), transparent);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(56, 189, 248, 0.05);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: #38bdf8;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 15px;
  color: #8b95a5;
  line-height: 1.65;
  font-weight: 300;
}

.premium-section {
  padding: 120px 0;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-section .subhead {
  color: #a9b3c6;
  margin: 8px auto 28px;
  font-size: 16px;
  max-width: 720px;
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
}

.premium-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  justify-items: center;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.premium-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 320px;
  width: 100%;
  background: linear-gradient(145deg, #0b0f1a, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px 26px 26px;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.45), rgba(59, 130, 246, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.section-heading-sm {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: -0.5px;
}

.ip-details-premium {
  padding: 60px 0 100px;
  background: rgba(0, 0, 0, 0.1);
}

.details-group {
  position: relative;
}

.premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.31);
  box-shadow: 0 0 42px rgba(59, 130, 246, 0.38), 0 16px 40px rgba(0, 0, 0, 0.5);
}

.premium-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 12px rgba(59, 130, 246, 0.14);
}

.premium-card-icon i {
  color: #7dd3fc;
}

.premium-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #7dd3fc;
  stroke-width: 1.4;
}

.premium-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #f8f9fb;
  margin-bottom: 8px;
  text-align: center;
}

.premium-card-subtitle {
  font-size: 15px;
  color: #9bb4d5;
  margin-bottom: 10px;
  line-height: 1.45;
  font-weight: 500;
  text-align: center;
}

.premium-card-content {
  font-size: 15px;
  color: #abb9d4;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 0;
  text-align: center;
}


@media (max-width: 1100px) {
  .premium-cards {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .premium-cards {
    grid-template-columns: 1fr;
  }

  .premium-section {
    padding: 64px 0;
  }
}

/* ---- PACKAGES SECTION ---- */
.ip-packages {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.ip-packages-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 0;
  pointer-events: none;
}

.ip-glow-left {
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.12);
  top: 10%;
  left: -10%;
}

.ip-glow-right {
  width: 600px;
  height: 600px;
  background: rgba(79, 70, 229, 0.1);
  bottom: 5%;
  right: -10%;
}

.ip-packages .container {
  position: relative;
  z-index: 1;
}

/* Package badge */
.pkg-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.featured-badge {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.mission-premium {
  background: linear-gradient(135deg, rgba(7, 7, 46, 0.74), rgba(3, 2, 45, 0.47));
  border-radius: 30px;
  padding: 4rem 1.25rem;
  margin: 3.5rem 0;
  color: #eef2ff;
  box-shadow: inset 0 0 120px rgba(15, 23, 42, 0.35), 0 8px 40px rgba(30, 41, 59, 0.35);
  backdrop-filter: blur(1px);
}

@media (max-width: 960px) {
  .mission-premium {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.28), rgba(107, 33, 168, 0.26));
  }
}

.mission-premium .section-title {
  margin-bottom: 0.75rem;
  color: #f8fafc;
  letter-spacing: 0.1rem;
}

.mission-premium .mission-subtitle {
  margin: 0 auto 2rem;
  max-width: 760px;
  color: rgba(226, 232, 240, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.mission-item {
  background: transparent;
  color: #eef2ff;
  padding: 1rem 0.8rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.mission-item:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

.mission-index {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #38bdf8;
  opacity: 0.9;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}

.mission-item-title {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.mission-item-text {
  margin: 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: 1rem;
  line-height: 1.68;
}

@media (max-width: 960px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .mission-item {
    min-height: auto;
    padding: 0.8rem;
  }
}

.mission-pill-index {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #60a5fa);
  color: #0b1120;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.mission-pill p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #e5e7eb;
  margin: 0;
}

@media (max-width: 960px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- MAGNETIC BUTTON EFFECT ---- */
.magnetic-btn {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.3s ease;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .ip-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ip-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-item {
    flex: 1;
    min-width: 140px;
  }

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

@media (max-width: 767px) {
  .ip-hero {
    min-height: 100svh;
  }

  .ip-hero .desktop-video {
    display: none;
  }

  .ip-hero .mobile-video {
    display: block;
  }

  .ip-hero-title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .ip-hero-sub {
    font-size: 16px;
  }

  .ip-intro {
    padding: 70px 0;
  }

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

  .ip-stats {
    flex-direction: column;
    gap: 20px;
  }

  .section-heading {
    font-size: 34px;
  }

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

  .ip-features,
  .ip-packages {
    padding: 80px 0;
  }

  .cursor-glow {
    display: none;
  }
}

/* FOOTER */
.footer {
  padding: 100px 0 40px;
  background: #050508;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* BRAND */
.footer-brand p {
  margin-top: 20px;
  color: #8b95a5;
  font-size: 14px;
  max-width: 280px;
  line-height: 1.6;
}

/* LINKS */
.footer-links h4 {
  font-size: 14px;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: #8b95a5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #38bdf8;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 13px;
  color: #8b95a5;
}

.footer-bottom a {
  margin-left: 20px;
  color: #8b95a5;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: white;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media(max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 20px auto;
  }
}

.inner-hero {
  position: relative;
}

.inner-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.15);
  filter: blur(120px);
  top: 20%;
  left: 30%;
}

/* Utility classes (replacing inline styles) */
.hero-btn-wrapper {
  margin-top: 40px;
}

.section-text p {
  max-width: 800px;
  margin: auto;
  color: #9ca3af;
}

/* ---- ABOUT PAGE STYLES ---- */
.about-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background: linear-gradient(145deg, #0b0f1a, #0f172a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(59,130,246,0.12);
}

.about-card p {
  margin: 0;
  font-size: 16px;
}

/* ---- SCALE SECTION STYLES ---- */
.scale-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.scale-section > * {
  min-width: 0;
}

.scale-left {
  flex: 1;
  max-width: 520px;
}

.scale-left h2 {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.scale-left p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.scale-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(145deg, #0b0f1a, #0f172a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  color: #60a5fa;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .scale-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 20px;
  }

  .scale-left,
  .scale-right {
    max-width: 100%;
  }

  .scale-left h2 {
    font-size: 36px;
  }

  .scale-right {
    align-items: center;
  }
}

/* ---- FAQ ACCORDION STYLES ---- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: linear-gradient(145deg, #0b0f1a, #0f172a);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 0 20px rgba(59,130,246,0.1);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 18px;
  font-weight: bold;
  color: #60a5fa;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  color: rgba(255,255,255,0.7);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 20px 20px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-container {
    gap: 12px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    max-height: 600px;
    padding: 8px 18px 18px;
  }
}

/* =======================================
   PREMIUM FEATURE GRID (Glassmorphism)
   ======================================= */

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

.feature-card {
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 60%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(59, 130, 246, 0.15);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.4;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-weight: 300;
}

.feature-icon-glow {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #60a5fa;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

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

/* Responsive Grid */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 24px;
  }
}

/* ======================================= 
   EDITORIAL PREMIUM SECTIONS
   ======================================= */

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  line-height: 1.1;
  color: #f8f9fb;
  transition: filter 0.3s ease;
}

.section-header h2 span {
  background: linear-gradient(135deg, #60a5fa, #818cf8, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 16px;
  color: #a9b3c6;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}

/* Editorial Grid Layout */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.editorial-col-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.editorial-col-right {
  display: flex;
  flex-direction: column;
}

/* Editorial Intro Text */
.editorial-intro {
  font-size: 16px;
  color: #cdd5e0;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

/* Feature Rows Container */
.editorial-features {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Feature Row */
.feature-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  position: relative;
  animation: fadeIn 0.6s ease-out;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.feature-row:hover {
  transform: translateX(4px);
}

.feature-row:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.3), transparent);
  transition: width 0.3s ease, background 0.3s ease;
}

.feature-row:hover:not(:last-child)::after {
  width: 100%;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.5), transparent);
}

.feature-stat {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  transition: filter 0.3s ease;
}

.feature-row:hover .feature-stat {
  filter: brightness(1.2);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #f8f9fb;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.feature-row:hover .feature-title {
  color: #60a5fa;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.feature-subtitle {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

.feature-description {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive: Editorial Grid */
@media (max-width: 1024px) {
  .editorial-grid {
    gap: 60px;
    grid-template-columns: 1fr;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .editorial-grid {
    gap: 40px;
    padding: 0 16px;
  }
  
  .editorial-features {
    gap: 32px;
  }

  .feature-row:not(:last-child)::after {
    bottom: -16px;
  }
  
  .section-header {
    margin-bottom: 48px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 15px;
  }

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

  .feature-description {
    font-size: 14px;
  }
}

/* ======================================= 
   PRIVATE EVENTS — EDITORIAL LAYOUTS
   ======================================= */

/* ---- EDITORIAL SECTION BASE ---- */
.editorial-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-section.premium-section-top {
  border-top: none;
}

.editorial-section:first-of-type {
  border-top: none;
}

/* Section Intro */
.section-intro {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 20px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.15;
  color: #f8f9fb;
}

.section-title span {
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ---- SECTION 1: MERGED INTRO + WHAT'S INCLUDED ---- */

.premium-section-top .editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: flex-start;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.editorial-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #f8f9fb;
}

.editorial-heading span {
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.editorial-intro {
  font-size: 16px;
  color: #cdd5e0;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}

/* Feature List */
.feature-list-title {
  font-size: 18px;
  font-weight: 700;
  color: #f8f9fb;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

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

.feature-list li {
  list-style: none;
  padding-left: 0;
  font-size: 15px;
  color: #cdd5e0;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  padding-left: 28px;
  transition: all 0.3s ease;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #60a5fa;
  font-weight: 700;
  font-size: 18px;
}

.feature-list li:hover {
  color: #f8f9fb;
  transform: translateX(4px);
}

/* ---- SECTION 2A: BEST FOR (CONTENT GRID) ---- */

.content-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto;
  max-width: 100%;
}

.content-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.content-item:last-child {
  border-bottom: none;
}

.item-text {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
  transition: color 0.3s ease;
}

.content-item:hover .item-text {
  color: #f8f9fb;
}

/* ---- SECTION 2B: HOW EXPERIENCE WORKS (STEPS TIMELINE) ---- */

.steps-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.steps-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical timeline line */
.steps-content::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 60px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.3), transparent);
}

.step-item {
  display: flex;
  gap: 40px;
  padding: 32px 0;
  position: relative;
  align-items: flex-start;
  animation: slideInLeft 0.6s ease-out both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-item:nth-child(1) { animation-delay: 0s; }
.step-item:nth-child(2) { animation-delay: 0.1s; }
.step-item:nth-child(3) { animation-delay: 0.2s; }
.step-item:nth-child(4) { animation-delay: 0.3s; }

.step-number {
  font-size: 32px;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: -1px;
  min-width: 50px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9));
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
}

.step-content {
  flex: 1;
  padding: 8px 0;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #f8f9fb;
  margin: 0;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

/* ---- SECTION 3: WHY CHOOSE FLUTRON (GRID) ---- */

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-block {
  padding: 32px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.3));
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-choose-grid .why-choose-block:nth-child(1) { animation-delay: 0s; }
.why-choose-grid .why-choose-block:nth-child(2) { animation-delay: 0.1s; }
.why-choose-grid .why-choose-block:nth-child(3) { animation-delay: 0.2s; }
.why-choose-grid .why-choose-block:nth-child(4) { animation-delay: 0.3s; }
.why-choose-grid .why-choose-block:nth-child(5) { animation-delay: 0.4s; }
.why-choose-grid .why-choose-block:nth-child(6) { animation-delay: 0.5s; }
.why-choose-grid .why-choose-block:nth-child(7) { animation-delay: 0.6s; }
.why-choose-grid .why-choose-block:nth-child(8) { animation-delay: 0.7s; }
.why-choose-grid .why-choose-block:nth-child(9) { animation-delay: 0.8s; }
.why-choose-grid .why-choose-block:nth-child(10) { animation-delay: 0.9s; }

.why-choose-block:hover {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(96, 165, 250, 0.05));
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(96, 165, 250, 0.1);
}

.block-title {
  font-size: 18px;
  font-weight: 700;
  color: #f8f9fb;
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.block-content {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* ---- BEST FOR SECTION: BALANCED 2-COLUMN LAYOUT ---- */

.best-for-section {
  background: transparent;
  border-top: none;
}

.best-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.best-for-grid .column {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}

.best-for-grid .column.right {
  opacity: 0.9;
}

.best-for-item {
  font-size: 18px;
  line-height: 1.6;
  color: #cfd8ff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.best-for-item:last-child {
  border-bottom: none;
}

.best-for-item:hover {
  color: #60a5fa;
  transform: translateX(4px);
}

/* ---- SHARED EDITORIAL COMPONENTS ---- */
.section-intro {
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: #f8f9fb;
  margin-bottom: 24px;
}

.section-title span {
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  line-height: 1.6;
  font-weight: 300;
}

/* ---- BUSINESS EVENTS: IMPACT SECTION (MERGED INTRO + STATS) ---- *//* PUBLIC BEST FOR: ELITE REDESIGN */
.best-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.best-for-item {
  font-size: 18px;
  line-height: 1.6;
  color: #cfd8ff;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ENGINEERED FOR SCALE: ELITE REDESIGN */
.engineered-scale {
  padding: 120px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.engineered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.engineered-left h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #aab3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.engineered-left p {
  font-size: 19px;
  color: #aab3ff;
  line-height: 1.7;
  max-width: 540px;
}

.scale-item {
  font-size: 18px;
  color: #dbe2ff;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  display: flex;
  align-items: flex-start;
}

.scale-item::before {
  content: "•";
  color: #6ea8ff;
  margin-right: 16px;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 992px) {
  .engineered-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .engineered-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .best-for-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .engineered-left h2 {
    font-size: 32px;
  }
}

.business-impact-section {
  background: transparent;
  border-top: none;
}

.business-impact-section .editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
}

.business-impact-section .editorial-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.business-impact-section .section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: #f8f9fb;
}

.business-impact-section .editorial-desc {
  font-size: 16px;
  color: #cdd5e0;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
  max-width: 600px;
}

.business-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(96, 165, 250, 0.1);
  transition: all 0.3s ease;
  gap: 10px;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-item:hover {
  transform: translateX(8px);
}

.stat-value {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 30px rgba(96, 165, 250, 0.2);
  transition: filter 0.3s ease;
}

.stat-item:hover .stat-value {
  filter: brightness(1.2);
  text-shadow: 0 0 40px rgba(96, 165, 250, 0.4);
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: #f8f9fb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.stat-description {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}

/* ---- BUSINESS EVENTS: BUILT FOR BUSINESS SECTION ---- */

.built-for-business-section {
  background: transparent;
  border-top: 1px solid rgba(96, 165, 250, 0.1);
  padding: 120px 0;
}

.builtfor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.builtfor-item {
  display: contents;
}

.builtfor-item > * {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  animation: fadeInUp 0.6s ease-out both;
  padding: 0;
}

.builtfor-item > *:nth-child(1) { animation-delay: 0s; }
.builtfor-item > *:nth-child(2) { animation-delay: 0.1s; }
.builtfor-item > *:nth-child(3) { animation-delay: 0.2s; }
.builtfor-item > *:nth-child(4) { animation-delay: 0.3s; }
.builtfor-item > *:nth-child(5) { animation-delay: 0.4s; }
.builtfor-item > *:nth-child(6) { animation-delay: 0.5s; }

.builtfor-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #f8f9fb;
  margin: 0;
  letter-spacing: -0.3px;
  line-height: 1.3;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.builtfor-item > *:hover .builtfor-card-title {
  color: #60a5fa;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.builtfor-card-content {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
  transition: color 0.3s ease;
}

.builtfor-item > *:hover .builtfor-card-content {
  color: #e2e8f0;
}

/* ---- RESPONSIVE: EDITORIAL SECTIONS ---- */

@media (max-width: 1024px) {
  .premium-section-top .editorial-grid {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .content-grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .best-for-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }

  .business-impact-section .editorial-grid {
    gap: 60px;
    grid-template-columns: 1fr;
  }

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

  .stat-item {
    padding: 28px 0;
  }

  .editorial-section {
    padding: 80px 0;
  }

  .section-intro {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .editorial-section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .section-desc {
    font-size: 14px;
  }

  .section-intro {
    margin-bottom: 48px;
    padding: 0 16px;
  }

  .editorial-heading {
    font-size: 32px;
  }

  .feature-list-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .feature-list {
    gap: 16px;
  }

  .feature-list li {
    font-size: 14px;
    padding-left: 24px;
  }

  .steps-content::before {
    left: 12px;
    top: 56px;
  }

  .step-item {
    gap: 24px;
    padding: 24px 0;
  }

  .step-number {
    font-size: 24px;
    min-width: 44px;
  }

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

  .why-choose-block {
    padding: 24px;
  }

  .block-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .block-content {
    font-size: 13px;
  }

  .content-item {
    padding: 20px 0;
  }

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

  .business-impact-section .editorial-grid {
    gap: 40px;
    padding: 0 16px;
  }

  .business-impact-section .section-title {
    font-size: 32px;
  }

  .business-impact-section .editorial-desc {
    font-size: 15px;
  }

  .stat-value {
    font-size: 36px;
  }

  .stat-label {
    font-size: 13px;
  }

  .stat-description {
    font-size: 12px;
  }

  .builtfor-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }

  .built-for-business-section {
    padding: 80px 0;
  }
}

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

  .section-title {
    font-size: 24px;
  }

  .editorial-heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .editorial-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .feature-list li {
    font-size: 13px;
  }

  .step-number {
    font-size: 18px;
    padding: 6px 10px;
  }

  .step-title {
    font-size: 14px;
  }

  .why-choose-block {
    padding: 20px;
    border-radius: 12px;
  }

  .block-title {
    font-size: 14px;
  }

  .block-content {
    font-size: 12px;
  }
}
