/* =====================================================
   HOME PAGE STYLES – Completely New Structure
   ===================================================== */

/* HERO SECTION - New Structure */
.hero-new {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 30px 0;
}

.hero-background-layers {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.layer-1 {
  background: radial-gradient(circle at 20% 30%, var(--brand-red) 0%, transparent 50%);
  animation: layer-move-1 20s infinite ease-in-out;
}

.layer-2 {
  background: radial-gradient(circle at 80% 70%, var(--brand-red) 0%, transparent 50%);
  animation: layer-move-2 25s infinite ease-in-out;
}

.layer-3 {
  background: radial-gradient(circle at 50% 50%, rgba(255, 10, 6, 0.3) 0%, transparent 60%);
  animation: layer-move-3 30s infinite ease-in-out;
}

@keyframes layer-move-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -50px) scale(1.1); }
}

@keyframes layer-move-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 50px) scale(1.1); }
}

@keyframes layer-move-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 30px) scale(1.05); }
}

.hero-layout-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-media-new {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s;
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.hero-image-frame {
  position: absolute;
  inset: -4px;
  border: 3px solid var(--brand-red);
  border-radius: 30px;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.hero-img-new {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  filter: brightness(1.1) contrast(1.1);
}

.hero-text-new {
  color: var(--white);
}

.hero-title-group {
  margin-bottom: 30px;
}

.hero-title-new {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-underline {
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-red) 0%, transparent 100%);
  border-radius: 3px;
}

.hero-subtitle-new {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-description-new {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-description-new strong {
  color: var(--brand-red);
  font-weight: 700;
}

/* WHAT IS CREATINE - New Structure */
.what-is-section-new {
  padding: 30px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
}

.what-is-container-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.what-is-header-new {
  text-align: center;
  margin-bottom: 24px;
}

.section-tag-new {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.section-title-new {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.what-is-body-new {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

.what-is-left-new,
.what-is-right-new {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block-new {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  transition: all 0.4s;
  display: flex;
  gap: 16px;
}

.info-block-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 10, 6, 0.15);
  border-color: var(--brand-red);
}

.block-icon-new {
  font-size: 3rem;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 10, 6, 0.15);
  border-radius: 18px;
  border: 2px solid rgba(255, 10, 6, 0.3);
  filter: grayscale(100%) brightness(0.4) sepia(100%) hue-rotate(0deg) saturate(10000%) contrast(1.3);
}

.block-text-new h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 600;
}

.block-text-new p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.featured-block-new {
  background: linear-gradient(135deg, rgba(255, 10, 6, 0.05) 0%, rgba(255, 10, 6, 0.02) 100%);
  border-color: var(--brand-red);
}

.center-visual-new {
  position: sticky;
  top: 120px;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-core-new {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 50%;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 40px rgba(255, 10, 6, 0.5);
  animation: core-pulse 3s infinite ease-in-out;
}

@keyframes core-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(255, 10, 6, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(255, 10, 6, 0.7);
  }
}

.visual-orbits-new {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid;
  border-radius: 50%;
  border-color: rgba(255, 10, 6, 0.2);
}

.orbit-1 {
  width: 150px;
  height: 150px;
  animation: orbit-rotate 15s linear infinite;
}

.orbit-2 {
  width: 220px;
  height: 220px;
  animation: orbit-rotate 20s linear infinite reverse;
}

.orbit-3 {
  width: 300px;
  height: 300px;
  animation: orbit-rotate 25s linear infinite;
}

@keyframes orbit-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.what-is-footer-new {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 10, 6, 0.1);
}

.footer-stat-new {
  text-align: center;
}

.stat-num-new {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-text-new {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* KEY BENEFITS - New Structure */
.benefits-section-new {
  padding: 40px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
}

.benefits-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.benefits-header-new {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.benefits-number-new {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 10, 6, 0.4);
  line-height: 1;
  margin-right: 16px;
  vertical-align: middle;
}

.benefits-title-new {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  vertical-align: middle;
  margin: 0;
}

.benefits-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card-new {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 10, 6, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card-new:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 10, 6, 0.3);
  box-shadow: 0 8px 32px rgba(255, 10, 6, 0.15);
}

.benefit-card-new:hover::before {
  transform: scaleX(1);
}

.benefit-icon-new {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 10, 6, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--brand-red);
  transition: all 0.3s ease;
}

.benefit-card-new:hover .benefit-icon-new {
  background: rgba(255, 10, 6, 0.2);
  transform: scale(1.05);
}

.benefit-icon-new svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-red);
}

.benefit-title-new {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.benefit-text-new {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.benefit-text-new strong {
  color: var(--brand-red);
  font-weight: 600;
}

/* WHY CHOOSE - New Structure */
.why-choose-section-new {
  padding: 30px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-bg-new {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  right: -25%;
  background: linear-gradient(45deg, rgba(255, 10, 6, 0.03) 0%, transparent 50%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.why-choose-header-new {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.why-number-new {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 10, 6, 0.4);
  line-height: 1;
  margin-bottom: 12px;
}

.why-title-new {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
}

.why-choose-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.why-item-new {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.why-item-new::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 10, 6, 0.1) 0%, transparent 100%);
  border-radius: 0 0 0 100%;
  opacity: 0;
  transition: opacity 0.4s;
}

.why-item-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 10, 6, 0.2);
  border-color: var(--brand-red);
}

.why-item-new:hover::after {
  opacity: 1;
}

.why-mark-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(255, 10, 6, 0.3);
  transition: transform 0.4s;
}

.why-item-new:hover .why-mark-new {
  transform: scale(1.1) rotate(10deg);
}

.why-content-new h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 600;
}

.why-content-new p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.why-list-new {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.why-list-new li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.why-list-new li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: 700;
}

/* SCIENTIFIC SUPPORT - New Structure */
.science-section-new {
  padding: 30px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}

.science-overlay-new {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 58, 55, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.science-box-new {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  text-align: center;
}

.science-top-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.science-icon-box-new {
  font-size: 5rem;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 10, 6, 0.15);
  border-radius: 50%;
  border: 3px solid rgba(255, 10, 6, 0.4);
  filter: grayscale(100%) brightness(0.4) sepia(100%) hue-rotate(0deg) saturate(10000%) contrast(1.3);
}

.science-label-new {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.science-heading-new {
  font-size: 2.25rem;
  margin-bottom: 18px;
  color: var(--white);
  font-weight: 700;
}

.science-text-new {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

.science-numbers-new {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.science-stat-new {
  text-align: center;
}

.stat-value-new {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-name-new {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* AUDIENCE SECTION - New Structure */
.audience-section-new {
  padding: 40px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

.audience-section-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 10, 6, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255, 10, 6, 0.12) 0%, transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.audience-header-new {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.audience-kicker-new {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.audience-number-new {
  font-size: 3.75rem;
  font-weight: 700;
  color: rgba(255, 10, 6, 0.4);
  line-height: 1;
}

.audience-label-new {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 10, 6, 0.08);
  border: 1px solid rgba(255, 10, 6, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.audience-title-new {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.audience-subtitle-new {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.audience-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.audience-list-simple-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.audience-item-simple-new {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 20px 24px;
  border-radius: 12px;
  border: 2px solid rgba(255, 10, 6, 0.12);
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 50px;
}

.audience-item-simple-new::before {
  content: '•';
  position: absolute;
  left: 24px;
  color: var(--brand-red);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.audience-item-simple-new:hover {
  border-color: var(--brand-red);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(255, 10, 6, 0.15);
}

.audience-card-new {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid rgba(255, 10, 6, 0.12);
  transition: all 0.4s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.audience-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.audience-card-new:hover {
  transform: translateY(-8px);
  border-color: var(--brand-red);
  box-shadow: 0 12px 40px rgba(255, 10, 6, 0.15);
}

.audience-card-new:hover::before {
  transform: scaleX(1);
}

.audience-card-top-new {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.audience-icon-new {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 10, 6, 0.12);
  border: 1px solid rgba(255, 10, 6, 0.3);
  border-radius: 14px;
  flex-shrink: 0;
  color: var(--brand-red);
}

.audience-icon-new svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-red);
}

.audience-card-title-new {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.audience-card-text-new {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.audience-card-list-new {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  display: grid;
  gap: 10px;
  width: 100%;
}

.audience-card-list-new li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.audience-card-list-new li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(255, 10, 6, 0.15);
}

/* ELEVATE SECTION - New Structure */
.elevate-section-new {
  padding: 30px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}

.elevate-bg-new {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 10, 6, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 58, 55, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.elevate-wrapper-new {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.elevate-badge-new {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(255, 10, 6, 0.4);
}

.elevate-heading-new {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.2;
}

.elevate-message-new {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.elevate-icon-new {
  font-size: 3.5rem;
  flex-shrink: 0;
  filter: grayscale(100%) brightness(0.4) sepia(100%) hue-rotate(0deg) saturate(10000%) contrast(1.3);
}

.elevate-text-new {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  flex: 1;
}

.elevate-tagline-new {
  padding: 20px 0;
  border-top: 2px solid rgba(255, 10, 6, 0.3);
  border-bottom: 2px solid rgba(255, 10, 6, 0.3);
}

.elevate-tagline-new p {
  font-size: 1.25rem;
  color: var(--brand-red);
  font-weight: 600;
  font-style: italic;
  margin: 0;
  text-shadow: 0 2px 10px rgba(255, 10, 6, 0.3);
}

/* BLOG SECTION - New Structure */
.blog-section-new {
  padding: 30px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.blog-header-new {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
}

.blog-title-new {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.blog-highlight-new {
  color: var(--brand-red);
}

.blog-subtitle-new {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
}

.blog-list-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-item-new {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: all 0.4s;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.blog-item-new:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(255, 10, 6, 0.2);
  border-color: var(--brand-red);
}

.blog-image-wrapper-new {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-img-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.blog-item-new:hover .blog-img-new {
  transform: scale(1.1);
}

.blog-overlay-new {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.blog-item-new:hover .blog-overlay-new {
  opacity: 1;
}

.blog-body-new {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category-new {
  display: inline-block;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: var(--brand-red);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  width: fit-content;
}

.blog-heading-new {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-excerpt-new {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-link-new {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  width: fit-content;
}

.blog-link-new:hover {
  gap: 12px;
  color: var(--brand-red-dark);
}

/* CERTIFICATIONS SECTION - Minimal Structure */
.certifications-section-new {
  padding: 60px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.certifications-minimal-new {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.certificate-box-new {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  border: 2px solid rgba(255, 10, 6, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.certificate-box-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 10, 6, 0.1), transparent);
  transition: left 0.5s ease;
}

.certificate-box-new:hover::before {
  left: 100%;
}

.certificate-box-new:hover {
  transform: translateY(-12px) scale(1.05);
  border-color: var(--brand-red);
  box-shadow: 0 16px 48px rgba(255, 10, 6, 0.3);
  background: linear-gradient(135deg, rgba(255, 10, 6, 0.05) 0%, #1a1a1a 50%, rgba(255, 10, 6, 0.05) 100%);
}

.certificate-img-new {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.certificate-box-new:hover .certificate-img-new {
  opacity: 1;
  transform: scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 10, 6, 0.5));
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-layout-new {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-title-new {
    font-size: 3.5rem;
  }

  .what-is-body-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .center-visual-new {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }

  .why-choose-grid-new {
    grid-template-columns: 1fr;
  }

  .audience-grid-new {
    grid-template-columns: 1fr;
  }

  .audience-list-simple-new {
    max-width: 100%;
  }

  .audience-item-simple-new {
    padding-left: 50px;
  }

  .certifications-minimal-new {
    flex-direction: column;
    gap: 30px;
  }

  .certificate-box-new {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .hero-title-new {
    font-size: 2.5rem;
  }

  .section-title-new,
  .benefits-title-new,
  .why-title-new,
  .science-heading-new,
  .audience-title-new,
  .elevate-heading-new {
    font-size: 2.25rem;
  }

  .benefits-number-new,
  .why-number-new,
  .audience-number-new {
    font-size: 3rem;
  }

  .audience-subtitle-new {
    font-size: 1rem;
  }

  .audience-card-new {
    padding: 20px;
  }

  .certificate-box-new {
    width: 160px;
    height: 160px;
    padding: 24px;
  }

  .benefits-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card-new {
    padding: 24px 20px;
  }

  .what-is-footer-new {
    flex-direction: column;
    gap: 40px;
  }

  .science-numbers-new {
    flex-direction: column;
    gap: 40px;
  }

  .elevate-message-new {
    flex-direction: column;
    text-align: center;
  }

  .elevate-tagline-new p {
    font-size: 1.5rem;
  }

  .blog-list-new {
    grid-template-columns: 1fr;
  }

  .blog-title-new {
    font-size: 2.5rem;
  }
}
