* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(135deg, #5b0202 0%, #0a0a0a 50%, #8b0000 100%);
}

/* Animated gradient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b0000 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #5b0202 0%, transparent 70%);
  bottom: -10%;
  right: -10%;
  animation-delay: 7s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #8b0000 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.brand {
  display: inline-block;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
}

.logo-container {
  margin-bottom: 1rem;
}

.logo {
  height: 120px;
  width: auto;
}

.brand-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: #ede7c7;
  margin-top: 0.5rem;
}

.system-title {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
  animation: fadeIn 1.2s ease-out;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.system-description {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1.4s ease-out;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.system-description .static-text {
  display: inline;
}

.animated-words {
  display: inline-block;
  font-weight: 900;
  min-width: 500px;
  min-height: 1.6em;
  position: relative;
  vertical-align: top;
}

.animated-word {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  color: #ede7c7;
  /* text-shadow: 0 0 30px rgba(237, 231, 199, 0.8),
    0 0 60px rgba(237, 231, 199, 0.4); */
  font-size: 1.5em;
  animation: wordCycle 2s infinite;
}

.animated-word:nth-child(1) {
  animation-delay: 0s;
}

.animated-word:nth-child(2) {
  animation-delay: 3s;
}

.animated-word:nth-child(3) {
  animation-delay: 6s;
}

@keyframes wordCycle {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }

  10% {
    opacity: 1;
    transform: translateY(0) scale(1.1);
  }

  25% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  33% {
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
  }

  100% {
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
  }
}

.divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8b0000, transparent);
  margin: 3rem auto;
  animation: fadeIn 1.6s ease-out;
  box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.main-headline {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #ffffff;
  animation: fadeInUp 1s ease-out 0.3s backwards;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  font-family: "Playfair Display", serif;
}

.subtext {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.5s backwards;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #8b0000 0%, #5b0202 100%);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.7s backwards;
  box-shadow: 0 10px 40px rgba(139, 0, 0, 0.5);
  border: 2px solid #8b0000;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(139, 0, 0, 0.7);
  border-color: #ede7c7;
}

.cta-button:active {
  transform: translateY(-1px);
}

.founder-credit {
  /* margin-top: 4rem; */
  font-size: 0.85rem;
  color: #ede7c7;
  animation: fadeIn 1.8s ease-out;
  opacity: 0.7;
}

.founder-name {
  color: #8b0000;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating particles */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(139, 0, 0, 0.6);
  border-radius: 50%;
  animation: particleFloat 15s infinite linear;
  box-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 1.5rem;
  }

  .logo {
    height: 60px;
  }

  .system-description {
    font-size: 1rem;
  }

  .animated-word {
    font-size: 1.1em;
    margin: 0 0.2rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
/* 
.section-1 {
  background-color: bisque;
  height: 720px;
  color: #8b0000;
  max-width: 100%;
}

.section1-title {
  text-align: center;
  padding-top: 3rem;
  font-weight: 600;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  margin: 4rem 4rem 1rem 4rem;
}

.left-side {
}
.left-side > .content {
  margin-left: 2rem;
  font-size: 18px;
  line-height: 1.6;

  background: rgba(255, 255, 255, 0.658);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
.para {
  color: black;
  font-size: 20px;
}

.img-container {
  border: 1px solid maroon;
  border-radius: 16px;
  box-shadow: 5px 3px 1px 2px rgb(119 20 20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.p-comp-img {
  width: 720px;
  height: 360px;
  border-radius: 16px;
} 
 */

.section-1 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  /* background: radial-gradient(
      circle at 15% 20%,
      rgba(212, 165, 116, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(212, 165, 116, 0.12) 0%,
      transparent 40%
    ),
    linear-gradient(135deg, #6b2d35 0%, #8b4049 50%, #a0545e 100%); */

  background-color: beige;
}

.container {
  max-width: 1200px;
  width: 100%;
}

/* Hero Title Card */
.title-container {
  margin-bottom: 5rem;
  opacity: 0;
  animation: fadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.section1-title {
  font-size: clamp(2.5rem, 6vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #8b0000;
  text-align: center;
  letter-spacing: -0.02em;
  padding: 0 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Content Card */
.content-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  padding: 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  opacity: 0;
  animation: fadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* Text Content */
.text-content {
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
}

.text-content .para {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #2d2d2d;
  font-weight: 400;
}

/* Image Section */
.image-wrapper {
  position: relative;
  opacity: 0;
  animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(139, 64, 73, 0.4), 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-2deg);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-frame:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
  box-shadow: 0 40px 80px rgba(139, 64, 73, 0.5), 0 15px 30px rgba(0, 0, 0, 0.3);
}

.p-comp-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-frame:hover .p-comp-img {
  transform: scale(1.05);
}

/* Decorative accent */
.image-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.6),
    rgba(212, 165, 116, 0.2)
  );
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: linear-gradient(
    135deg,
    rgba(139, 64, 73, 0.4),
    rgba(139, 64, 73, 0.1)
  );
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  animation: float 8s ease-in-out infinite reverse;
}

/* Animations */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    transform: translateY(40px);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .content-card {
    padding: 3rem 2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .text-content .para {
    font-size: 1.25rem;
    text-align: center;
  }

  .image-frame {
    transform: perspective(1000px) rotateY(0deg);
  }

  .section1-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .title-container {
    margin-bottom: 3rem;
  }
}

@media (max-width: 640px) {
  .section-1 {
    padding: 1.5rem;
  }

  .content-card {
    padding: 2rem 1.5rem;
    border-radius: 28px;
  }

  .section1-title {
    padding: 0 1rem;
  }

  .text-content .para {
    font-size: 1.1rem;
  }
}

/* Chime Animation Class */
.chime-text {
  display: inline-block;
  animation: chime 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes chime {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  10% {
    transform: rotate(-3deg) scale(1.05);
  }
  20% {
    transform: rotate(3deg) scale(1.05);
  }
  30% {
    transform: rotate(-3deg) scale(1.05);
  }
  40% {
    transform: rotate(3deg) scale(1.05);
  }
  50% {
    transform: rotate(0deg) scale(1);
  }
}

/* Optional: Add glow effect */
.chime-text {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Animated Background for Section-1 */
.section-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle,
      rgba(212, 165, 116, 0.15) 2px,
      transparent 2px
    ),
    radial-gradient(circle, rgb(212, 166, 116) 1px, transparent 1px);
  background-size: 60px 60px, 30px 30px;
  background-position: 0 0, 15px 15px;
  animation: backgroundDrift 5s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Floating Icons/Symbols */
.section-1::after {
  content: "👁️ 💼 📊 🎯 ✨ 🚀";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 24px;
  opacity: 1%;
  letter-spacing: 80px;
  word-spacing: 100px;
  line-height: 200px;
  animation: floatSymbols 25s linear infinite;
  pointer-events: none;
  z-index: 0;
  color: #6b2d35;
}

/* Ensure container is above background */
.section-1 .container {
  position: relative;
  z-index: 1;
}

/* Animation Keyframes */
@keyframes backgroundDrift {
  0% {
    background-position: 0 0, 15px 15px;
  }
  100% {
    background-position: 60px 60px, 75px 75px;
  }
}

@keyframes floatSymbols {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.08;
  }
  50% {
    opacity: 0.12;
  }
  100% {
    transform: translateY(-50px) translateX(30px);
    opacity: 0.08;
  }
}

/* Alternative: Subtle Pulse Circles */
.pulse-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212, 165, 116, 0.2);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.pulse-circle:nth-child(1) {
  top: 15%;
  left: 10%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.pulse-circle:nth-child(2) {
  top: 60%;
  right: 15%;
  width: 150px;
  height: 150px;
  animation-delay: 2s;
}

.pulse-circle:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 80px;
  height: 80px;
  animation-delay: 1s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.07; /* Adjust opacity to blend with gradients */
}

.section-2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0d0f 50%, #0a0a0a 100%);
  overflow: hidden;
}

/* Subtle maroon glow spots */
.section-2::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(139, 64, 73, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

.section-2::after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 64, 73, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(90px);
  animation: pulse 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.section-2 .container {
  position: relative;
  z-index: 1;
}

/* Headline Section */
.headline-container {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.section2-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.section2-headline .highlight {
  color: #d4a574;
  position: relative;
  display: inline-block;
}

.section2-headline .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8b4049, #d4a574);
  border-radius: 2px;
}

/* Main Content Grid - Scroll Triggered */
.section2-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Copy Card */
.copy-card {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 64, 73, 0.3);
  border-radius: 32px;
  padding: 3.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(139, 64, 73, 0.2) inset;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.copy-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.copy-card .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4a574;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(139, 64, 73, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(139, 64, 73, 0.5);
}

.copy-card .copy-text {
  font-size: 1.35rem;
  line-height: 1.7;
  color: #e5e5e5;
  font-weight: 400;
}

.copy-card .copy-text strong {
  color: #d4a574;
  font-weight: 600;
}

/* Quote Card */
.quote-card {
  background: linear-gradient(
    135deg,
    rgba(139, 64, 73, 0.4) 0%,
    rgba(139, 64, 73, 0.2) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 64, 73, 0.5);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(139, 64, 73, 0.3),
    0 0 0 1px rgba(139, 64, 73, 0.2) inset;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.quote-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 64, 73, 0.4), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

#right-quote-card {
  /* width: 628px;
  height: 358px; */
}

.quote-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.quote-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.quote-text .gradient-text {
  background: linear-gradient(135deg, #d4a574, #f5e6d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating decorative elements */
.deco-circle {
  display: none;
}

/* Responsive */
@media (max-width: 968px) {
  .section2-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section2-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  .copy-card,
  .quote-card {
    padding: 2.5rem;
  }

  .copy-card .copy-text {
    font-size: 1.2rem;
  }

  .quote-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .section-2 {
    padding: 3rem 1.5rem;
  }

  .headline-container {
    margin-bottom: 2.5rem;
  }

  .copy-card,
  .quote-card {
    padding: 2rem;
  }

  .quote-icon {
    font-size: 2.5rem;
  }
}

/* section-3 */
.section-3 {
  display: none;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 50%, #2a0505 100%);
  color: #fff;
  overflow-x: hidden;
  padding: 80px 20px;
}

.section3-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

.section3-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b0000 0%, #ede7c7 50%, #8b0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.section3-header p {
  font-size: 1.3rem;
  color: #ede7c7;
  font-weight: 300;
  opacity: 0.8;
}

.scroll-container {
  max-width: 900px;
  margin: 0 auto;
  height: 650px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  padding: 20px;
  scrollbar-width: none; /* Add this for Firefox */
  -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-container::-webkit-scrollbar-track {
  background: #1a0a0a;
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8b0000 0%, #5b0202 100%);
  border-radius: 10px;
}

.card {
  min-height: 600px;
  background: linear-gradient(
    145deg,
    rgba(139, 0, 0, 0.1),
    rgba(91, 2, 2, 0.15)
  );
  border-radius: 30px;
  padding: 50px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(139, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #8b0000 0%, #ede7c7 50%, #8b0000 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.6s ease;
}

.card:hover {
  transform: translateX(10px);
  box-shadow: -15px 15px 60px rgba(139, 0, 0, 0.4);
  border-color: #8b0000;
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  right: -50px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.card-number {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #8b0000 0%, #ede7c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: 0 0 30px rgba(139, 0, 0, 0.5);
}

.card-icon-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b0000, #5b0202);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #ede7c7;
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.card:hover .card-icon-badge {
  transform: rotate(10deg) scale(1.1);
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ede7c7;
  line-height: 1.3;
}

.card-description {
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(237, 231, 199, 0.8);
  font-weight: 300;
}

.card-accent {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 8rem;
  color: rgba(139, 0, 0, 0.1);
  z-index: 1;
}

.nav-indicators {
  display: none;
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.indicator {
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.3);
  border: 2px solid rgba(139, 0, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: #8b0000;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #8b0000;
  border-color: #ede7c7;
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

.indicator.active::before {
  width: 6px;
  height: 6px;
}

.indicator:hover {
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }

  .scroll-container {
    height: 550px;
  }

  .card {
    min-height: 500px;
    padding: 35px;
  }

  .card-number {
    font-size: 3.5rem;
  }

  .card-icon-badge {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .card-title {
    font-size: 1.8rem;
  }

  .card-description {
    font-size: 1.05rem;
  }

  .nav-indicators {
    right: 15px;
  }
}

.section4 {
  background: #ede7c7;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Animated background - Particle network */
.section4-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.section4-particle {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 25px rgba(139, 0, 0, 0.4);

  position: absolute;

  background: rgba(139, 0, 0, 0.4);
  border-radius: 50%;
  animation: section4-particle-drift linear infinite;
}

@keyframes section4-particle-drift {
  0% {
    transform: translate(0, 0) scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translate(var(--tx), var(--ty)) scale(1);
  }
  100% {
    transform: translate(calc(var(--tx) * 2), calc(var(--ty) * 2)) scale(0.5);
    opacity: 0;
  }
}

.section4-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.section4-headline {
  text-align: center;
  margin-bottom: 80px;
  animation: section4-fadeIn 1s ease-out;
}

@keyframes section4-fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section4-headline h2 {
  font-size: 3rem;
  color: #8b0000;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section4-headline p {
  font-size: 1.4rem;
  color: #5b0202;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.95rem;
}

.section4-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 80px;
}

.section4-carousel {
  overflow: visible;
  position: relative;
}

.section4-carousel-wrapper {
  overflow: hidden;
  border-radius: 24px;
}

.section4-carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section4-card {
  min-width: 100%;
  padding: 60px 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5e8 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(139, 0, 0, 0.2);
}

.section4-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #8b0000, #5b0202, #8b0000);
}

.section4-card-icon {
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 4rem;
  color: rgba(139, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.section4-card:hover .section4-card-icon {
  color: rgba(139, 0, 0, 0.15);
  transform: scale(1.1) rotate(5deg);
}

.section4-card-quote {
  font-size: 2rem;
  color: #8b0000;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  padding-left: 0;
  letter-spacing: -0.5px;
}

.section4-quote-mark {
  font-size: 6rem;
  color: rgba(139, 0, 0, 0.15);
  font-family: Georgia, serif;
  line-height: 0;
  display: block;
  margin-bottom: 20px;
}

.section4-card-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}

.section4-card-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b0000, #5b0202);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.3);
  flex-shrink: 0;
}

.section4-card-author-info {
  flex: 1;
}

.section4-card-author-name {
  font-size: 1.2rem;
  color: #8b0000;
  font-weight: 700;
  margin-bottom: 5px;
}

.section4-card-author-title {
  font-size: 1rem;
  color: #5b0202;
  opacity: 0.75;
  font-weight: 500;
}

.section4-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #8b0000;
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.3);
}

.section4-carousel-nav:hover {
  background: #5b0202;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(139, 0, 0, 0.4);
}

.section4-carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.section4-carousel-nav-prev {
  left: 0;
}

.section4-carousel-nav-next {
  right: 0;
}

.section4-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.section4-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.25);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.section4-indicator:hover {
  background: rgba(139, 0, 0, 0.5);
  transform: scale(1.2);
}

.section4-indicator.active {
  background: #8b0000;
  transform: scale(1.3);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.4);
}

/* Progress bar - REMOVED/HIDDEN */
.section4-progress {
  display: none;
}

@media (max-width: 768px) {
  .section4 {
    padding: 80px 20px;
  }

  .section4-headline h2 {
    font-size: 2.2rem;
  }

  .section4-headline p {
    font-size: 0.85rem;
  }

  .section4-carousel-container {
    padding: 0 60px;
  }

  .section4-card {
    padding: 50px 35px;
    min-height: 350px;
  }

  .section4-card-quote {
    font-size: 1.5rem;
  }

  .section4-quote-mark {
    font-size: 4rem;
  }

  .section4-carousel-nav {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .section4-card-icon {
    font-size: 3rem;
    top: 30px;
    right: 35px;
  }
}

.section5 {
  background: linear-gradient(135deg, #1a0505 0%, #0a0202 100%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Animated background - Looping dots */
.section5-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.section5-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(139, 0, 0, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
}

.section5-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section5-headline {
  text-align: center;
  margin-bottom: 80px;
  animation: section5-fadeIn 1s ease-out;
}

@keyframes section5-fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section5-headline h2 {
  font-size: 3.5rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section5-headline-highlight {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section5-headline p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.section5-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.section5-card {
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.2),
    rgba(91, 2, 2, 0.15)
  );
  border: 2px solid rgba(139, 0, 0, 0.3);
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.section5-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffa500, #ffd700);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section5-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 60px rgba(139, 0, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
}

.section5-card:hover::before {
  opacity: 1;
}

.section5-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b0000, #5b0202);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.4);
}

.section5-card:hover .section5-card-icon {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  transform: rotateY(360deg);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
}

.section5-card-icon i {
  font-size: 2.5rem;
  color: #ffd700;
  transition: color 0.4s ease;
}

.section5-card:hover .section5-card-icon i {
  color: #1a0505;
}

.section5-card-title {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section5-card-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-weight: 400;
}

.section5-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #1a0505;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

@media (max-width: 1024px) {
  .section5-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section5 {
    padding: 80px 20px;
  }

  .section5-headline h2 {
    font-size: 2.2rem;
  }

  .section5-headline p {
    font-size: 1.1rem;
  }

  .section5-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section5-card {
    padding: 40px 30px;
  }

  .section5-card-title {
    font-size: 1.3rem;
  }

  .section5-card-description {
    font-size: 1rem;
  }
}

.section6 {
  position: relative;
  min-height: 100vh;
  background: #ede7c7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  overflow: hidden;
}

.section6-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.section6-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #8b0000;
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) translateX(20px);
    opacity: 0.6;
  }
}

.section6-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
}

.section6-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section6-text {
  padding-right: 40px;
}

.section6-headline {
  font-size: 3.5rem;
  font-weight: 800;
  color: #8b0000;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section6-copy {
  font-size: 1.25rem;
  color: #5b0202;
  line-height: 1.8;
  margin-bottom: 40px;
}

.section6-highlight {
  display: inline-block;
  background: linear-gradient(
    120deg,
    rgba(139, 0, 0, 0.1) 0%,
    rgba(139, 0, 0, 0.05) 100%
  );
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.section6-visual {
  position: relative;
}

.section6-certificate {
  background: #ffffff;
  border: 3px solid #8b0000;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(139, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.section6-certificate:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(139, 0, 0, 0.25);
}

.section6-certificate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #8b0000, #5b0202, #8b0000);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
}

.section6-badge {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #8b0000, #5b0202);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(139, 0, 0, 0);
  }
}

.section6-badge-icon {
  font-size: 3rem;
  color: #ffffff;
}

.section6-cert-title {
  font-size: 2rem;
  font-weight: 700;
  color: #8b0000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section6-cert-subtitle {
  font-size: 1.1rem;
  color: #5b0202;
  line-height: 1.6;
  margin-bottom: 30px;
}

.section6-cert-badge-text {
  display: inline-block;
  background: #ede7c7;
  color: #8b0000;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.section6-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #8b0000;
}

.section6-corner-tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.section6-corner-tr {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.section6-corner-bl {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.section6-corner-br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

@media (max-width: 968px) {
  .section6-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section6-text {
    padding-right: 0;
    text-align: center;
  }

  .section6-headline {
    font-size: 2.5rem;
  }

  .section6-copy {
    font-size: 1.1rem;
  }

  .section6-certificate {
    padding: 50px 30px;
  }
}

@media (max-width: 640px) {
  .section6 {
    padding: 60px 20px;
  }

  .section6-headline {
    font-size: 2rem;
  }

  .section6-copy {
    font-size: 1rem;
  }

  .section6-cert-title {
    font-size: 1.5rem;
  }

  .section6-certificate {
    padding: 40px 20px;
  }
}
.section7 {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #5b0202 0%, #2a0101 50%, #8b0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  overflow: hidden;
}

.section7-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section7-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float-orb 20s infinite ease-in-out;
}

.section7-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.6), transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.section7-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(237, 231, 199, 0.15), transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 7s;
  animation-duration: 25s;
}

.section7-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.4), transparent);
  top: 50%;
  right: 10%;
  animation-delay: 14s;
  animation-duration: 30s;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -80px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 60px) scale(0.9);
  }
}

.section7-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(237, 231, 199, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(237, 231, 199, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.section7-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.section7-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(237, 231, 199, 0.6);
  border-radius: 50%;
  animation: rise 15s infinite ease-in;
}

@keyframes rise {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

.section7-container {
  position: relative;
  max-width: 900px;
  width: 100%;
  z-index: 2;
  text-align: center;
}

.section7-headline {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ede7c7 0%, #ffffff 50%, #ede7c7 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -2px;
  position: relative;
}

.section7-headline::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 20%,
    rgba(255, 215, 0, 0.3) 35%,
    rgba(255, 223, 0, 0.9) 45%,
    #ffd700 50%,
    rgba(255, 223, 0, 0.9) 55%,
    rgba(255, 215, 0, 0.3) 65%,
    transparent 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: golden-flare-text 4s ease-in-out infinite;
  pointer-events: none;
  filter: blur(0.5px);
}

@keyframes golden-flare-text {
  0% {
    background-position: 200% 0;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    background-position: -200% 0;
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    background-position: -200% 0;
    opacity: 0;
  }
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.section7-copy {
  font-size: 1.35rem;
  color: #ede7c7;
  line-height: 1.9;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section7-highlight {
  color: #ffffff;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.section7-highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ede7c7, transparent);
  animation: underline-pulse 2s ease-in-out infinite;
}

@keyframes underline-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.section7-pricing-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(237, 231, 199, 0.2);
  border-radius: 24px;
  padding: 50px 40px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.section7-pricing-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(237, 231, 199, 0.1),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 200%;
  }
}

.section7-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ede7c7;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.section7-price-currency {
  font-size: 2rem;
  opacity: 0.8;
}

.section7-price-note {
  font-size: 1.1rem;
  color: rgba(237, 231, 199, 0.8);
  margin-bottom: 20px;
}

.section7-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ede7c7, transparent);
  margin: 30px auto;
}

.section7-subtext {
  font-size: 1rem;
  color: rgba(237, 231, 199, 0.7);
  font-style: italic;
}

.section7-cta-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.section7-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 50px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ede7c7;
  background: transparent;
  border: 3px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
}

.section7-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 3px;
  background: linear-gradient(135deg, #ffd700, #ffa500, #ffd700, #ffa500);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradient-rotate 4s linear infinite;
}

@keyframes gradient-rotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.section7-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.section7-cta:hover::after {
  width: 400px;
  height: 400px;
}

.section7-cta:hover {
  transform: translateY(-3px);
  color: #ffd700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.section7-cta-icon {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  transition: transform 0.4s ease;
}

.section7-cta:hover .section7-cta-icon {
  transform: scale(1.2) rotate(10deg);
}

.section7-cta-text {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section7 {
    padding: 80px 20px;
  }

  .section7-headline {
    font-size: 2.5rem;
  }

  .section7-copy {
    font-size: 1.1rem;
  }

  .section7-price {
    font-size: 2.5rem;
  }

  .section7-pricing-box {
    padding: 40px 25px;
  }

  .section7-cta {
    padding: 18px 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section7-headline {
    font-size: 2rem;
  }

  .section7-copy {
    font-size: 1rem;
  }

  .section7-price {
    font-size: 2rem;
  }

  .section7-cta {
    padding: 16px 35px;
    font-size: 1rem;
  }
}

.section8 {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #ede7c7 0%, #f5f0dc 50%, #ede7c7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  overflow: hidden;
}

.section8-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section8-light-ray {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(139, 0, 0, 0.15),
    transparent
  );
  animation: light-fall 8s infinite ease-in-out;
}

@keyframes light-fall {
  0% {
    transform: translateY(-200px) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(50px);
    opacity: 0;
  }
}

.section8-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139, 0, 0, 0.1);
  animation: expand-fade 6s infinite ease-out;
}

@keyframes expand-fade {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.section8-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #8b0000;
  border-radius: 50%;
  animation: sparkle-twinkle 3s infinite ease-in-out;
}

@keyframes sparkle-twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.section8-container {
  position: relative;
  max-width: 1000px;
  width: 100%;
  z-index: 2;
  text-align: center;
}

.section8-icon-top {
  font-size: 4rem;
  background: linear-gradient(135deg, #8b0000, #5b0202);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  animation: icon-pulse 3s infinite ease-in-out;
}

@keyframes icon-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 5px 15px rgba(139, 0, 0, 0.3));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 10px 25px rgba(139, 0, 0, 0.5));
  }
}

.section8-quote-wrapper {
  position: relative;
  margin-bottom: 50px;
}

.section8-quote-mark {
  position: absolute;
  font-size: 8rem;
  color: rgba(139, 0, 0, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.section8-quote-mark-left {
  top: -40px;
  left: -20px;
}

.section8-quote-mark-right {
  bottom: -60px;
  right: -20px;
  transform: rotate(180deg);
}

.section8-headline {
  font-size: 3.5rem;
  font-weight: 800;
  color: #5b0202;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -1px;
  position: relative;
  animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section8-highlight {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #8b0000, #5b0202);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section8-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8b0000, #ffd700, #8b0000);
  background-size: 200% 100%;
  animation: underline-flow 3s linear infinite;
}

@keyframes underline-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.section8-question {
  font-size: 2rem;
  color: #8b0000;
  font-weight: 600;
  margin-bottom: 60px;
  font-style: italic;
  animation: fade-in-up 1s ease-out 0.3s backwards;
}

.section8-divider {
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8b0000, transparent);
  margin: 50px auto;
  position: relative;
}

.section8-divider::before,
.section8-divider::after {
  content: "✦";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #8b0000;
  font-size: 1rem;
}

.section8-divider::before {
  left: -30px;
}

.section8-divider::after {
  right: -30px;
}

.section8-cta-wrapper {
  animation: fade-in-up 1s ease-out 0.6s backwards;
}

.section8-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 25px 60px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 50%, #ffd700 100%);
  background-size: 200% 100%;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: cta-glow 3s infinite ease-in-out;
}

@keyframes cta-glow {
  0%,
  100% {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 10px 60px rgba(255, 215, 0, 0.7),
      0 0 30px rgba(255, 215, 0, 0.5);
  }
}

.section8-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3),
    transparent 70%
  );
  transform: scale(0);
  transition: transform 0.6s ease-out;
}

.section8-cta:hover::before {
  transform: scale(1);
}

.section8-cta:hover {
  transform: translateY(-5px) scale(1.05);
  background-position: 100% 0;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.4);
}

.section8-cta-icon {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  animation: flame-flicker 2s infinite ease-in-out;
}

@keyframes flame-flicker {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(-5deg);
  }
  75% {
    transform: scale(1.1) rotate(5deg);
  }
}

.section8-cta:hover .section8-cta-icon {
  animation: flame-burst 0.6s ease-out;
}

@keyframes flame-burst {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5) rotate(15deg);
  }
  100% {
    transform: scale(1.2);
  }
}

.section8-cta-text {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section8-footer-note {
  margin-top: 50px;
  font-size: 0.95rem;
  color: rgba(91, 2, 2, 0.6);
  font-style: italic;
  animation: fade-in-up 1s ease-out 0.9s backwards;
}

.section8-legacy-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  animation: fade-in-up 1s ease-out 1.2s backwards;
}

.section8-legacy-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.section8-legacy-icon:hover {
  opacity: 1;
  transform: translateY(-10px);
}

.section8-legacy-icon i {
  font-size: 2.5rem;
  color: #8b0000;
}

.section8-legacy-icon span {
  font-size: 0.9rem;
  color: #5b0202;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .section8 {
    padding: 80px 20px;
  }

  .section8-headline {
    font-size: 2.2rem;
  }

  .section8-question {
    font-size: 1.5rem;
  }

  .section8-cta {
    padding: 20px 45px;
    font-size: 1.1rem;
  }

  .section8-legacy-icons {
    gap: 25px;
  }

  .section8-legacy-icon i {
    font-size: 2rem;
  }

  .section8-quote-mark {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .section8-headline {
    font-size: 1.8rem;
  }

  .section8-question {
    font-size: 1.2rem;
  }

  .section8-cta {
    padding: 18px 35px;
    font-size: 1rem;
  }

  .section8-legacy-icons {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-logo-img {
  width: 360px;
  height: 120px;
}

/* section 3 new is here */
.section3-new {
  margin-top: 3rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 50%, #2a0505 100%);
  color: #fff;
  position: relative;
  height: 400vh;
}

.sticky-content-section3-new {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.section3-new-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.section3-new-header h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b0000 0%, #ede7c7 50%, #8b0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.section3-new-header p {
  font-size: 1.2rem;
  color: #ede7c7;
  font-weight: 300;
  opacity: 0.8;
}

/* Stepper */
.stepper-container-section3-new {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 50px;
  padding: 0 40px;
}

.stepper-section3-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 20px;
}

.stepper-section3-new::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: rgba(139, 0, 0, 0.3);
  z-index: 0;
}

.stepper-progress-section3-new {
  position: absolute;
  top: 25px;
  left: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8b0000 0%, #d4af37 100%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  width: 0;
}

.step-section3-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-circle-section3-new {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.3);
  border: 3px solid rgba(139, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(237, 231, 199, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.step-circle-section3-new::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #8b0000);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.step-section3-new.active .step-circle-section3-new,
.step-section3-new.completed .step-circle-section3-new {
  background: linear-gradient(135deg, #8b0000, #d4af37);
  border-color: #d4af37;
  color: #fff;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.step-section3-new.active .step-circle-section3-new::before {
  opacity: 0.3;
  animation: pulse-section3-new 2s infinite;
}

@keyframes pulse-section3-new {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.step-label-section3-new {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(237, 231, 199, 0.5);
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.step-section3-new.active .step-label-section3-new,
.step-section3-new.completed .step-label-section3-new {
  color: #d4af37;
  font-weight: 600;
}

.step-section3-new:hover .step-circle-section3-new {
  transform: scale(1.1);
  border-color: #d4af37;
}

/* Cards Container */
.cards-container-section3-new {
  width: 100%;
  max-width: 450px;
  height: 320px;
  position: relative;
  margin: 0 auto;
}

.card-section3-new {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(139, 0, 0, 0.15),
    rgba(91, 2, 2, 0.2)
  );
  border-radius: 25px;
  padding: 40px;
  overflow: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease;
  border: 2px solid #d4af37;
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}

.card-section3-new.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.card-section3-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #8b0000 0%, #d4af37 50%, #8b0000 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-section3-new.active::before {
  opacity: 1;
}

.card-section3-new::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.6s ease;
}

.card-section3-new.active {
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.card-section3-new:hover {
  box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
}

.card-section3-new:hover::after {
  right: -40px;
}

.card-header-section3-new {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.card-number-section3-new {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #d4af37 0%, #8b0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.card-icon-badge-section3-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37, #8b0000);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #0a0a0a;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transition: all 0.4s ease;
}

.card-section3-new:hover .card-icon-badge-section3-new {
  transform: rotate(10deg) scale(1.1);
}

.card-content-section3-new {
  position: relative;
  z-index: 2;
}

.card-title-section3-new {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ede7c7;
  line-height: 1.3;
}

.card-description-section3-new {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(237, 231, 199, 0.8);
  font-weight: 300;
}

.card-accent-section3-new {
  position: absolute;
  bottom: 25px;
  right: 25px;
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.08);
  z-index: 1;
}

/* Scroll Hint */
.scroll-hint-section3-new {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(237, 231, 199, 0.5);
  font-size: 0.9rem;
  animation: bounce-section3-new 2s infinite;
}

.scroll-hint-section3-new i {
  display: block;
  font-size: 1.5rem;
  margin-top: 10px;
}

@keyframes bounce-section3-new {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@media (max-width: 768px) {
  .section3-new-header h2 {
    font-size: 2rem;
  }

  .stepper-container-section3-new {
    padding: 0 20px;
  }

  .step-circle-section3-new {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .step-label-section3-new {
    font-size: 0.7rem;
  }

  .cards-container-section3-new {
    max-width: 340px;
    height: 420px;
  }

  .card-section3-new {
    padding: 28px;
  }

  .card-number-section3-new {
    font-size: 2.8rem;
  }

  .card-icon-badge-section3-new {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .card-title-section3-new {
    font-size: 1.3rem;
  }

  .card-description-section3-new {
    font-size: 0.9rem;
  }
}
