.hero-wrap {
    position: relative;
    background: 
        linear-gradient(135deg, #ffffff 0%, #f8f9ff 15%, #fff5f8 30%, #f0f4ff 45%, #fff8f0 60%, #f8f9ff 75%, #ffffff 100%),
        radial-gradient(ellipse at top left, rgba(255, 31, 140, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(109, 68, 255, 0.12) 0%, transparent 50%);
    background-size: 400% 400%, 100% 100%, 100% 100%;
    animation: gradientShift 15s ease infinite;
    padding: 50px 0 40px;
    border-radius: 0 0 70px 70px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}
.top-main-eading h2 .red::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 24px;
    width: 100%;
    height: 6px;
    background: red;
}
header.main-header, section {
  position: relative;
}
header.main-header.iot-one .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0 14px;
}
.logo  img {
  max-width: 322px;
}
header.main-header.iot-one .logo h3 {
  font-size: 18px;
  background: rgb(254,119,1);
  background: -moz-linear-gradient(left, rgba(254,119,1,1) 1%, rgba(255,78,121,1) 100%);
  background: -webkit-linear-gradient(left, rgba(254,119,1,1) 1%,rgba(255,78,121,1) 100%);
  background: linear-gradient(to right, rgba(254,119,1,1) 1%,rgba(255,78,121,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe7701', endColorstr='#ff4e79',GradientType=1 );
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  margin: 0;
  padding: 11px 20px 8px;
  border-radius: 8px;
}
/* Enhanced 3D Gradient Background */
.hero-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 31, 140, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(109, 68, 255, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 60%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.98) 100%);
    transform: perspective(1200px) rotateX(8deg) rotateY(2deg) scale(1.15);
    transform-origin: center center;
    animation: bg3dMove 20s ease-in-out infinite;
    z-index: 0;
    filter: blur(0.5px);
}

/* Additional 3D Gradient Layer */
.hero-3d-gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(255, 31, 140, 0.1) 0deg,
            rgba(109, 68, 255, 0.1) 90deg,
            rgba(59, 130, 246, 0.1) 180deg,
            rgba(236, 72, 153, 0.1) 270deg,
            rgba(255, 31, 140, 0.1) 360deg);
    transform: perspective(1000px) rotateX(-5deg) scale(1.2);
    animation: gradientRotate 25s linear infinite;
    z-index: 0;
    opacity: 0.6;
}

/* 3D Particles Effect */
.hero-3d-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 31, 140, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(109, 68, 255, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(236, 72, 153, 0.4), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(59, 130, 246, 0.3), transparent),
        radial-gradient(2px 2px at 30% 80%, rgba(255, 31, 140, 0.2), transparent);
    background-size: 200% 200%, 180% 180%, 150% 150%, 220% 220%, 190% 190%;
    animation: particlesMove 30s ease-in-out infinite;
    z-index: 0;
    transform: translateZ(20px);
}

/* Floating 3D Icons with Enhanced Effects */
.hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    perspective: 1500px;
}

.floating-icon {
    position: absolute;
    font-size: 56px;
    transform-style: preserve-3d;
    animation: float3d 8s ease-in-out infinite;
    z-index: 1;
    cursor: default;
}

.icon-3d-wrapper {
    position: relative;
    transform-style: preserve-3d;
    display: inline-block;
    transition: transform 0.3s ease;
}

.icon-3d-front {
    position: relative;
    display: inline-block;
    transform: translateZ(30px);
    filter: 
        drop-shadow(0 15px 30px rgba(255, 31, 140, 0.4))
        drop-shadow(0 5px 15px rgba(109, 68, 255, 0.3))
        drop-shadow(0 0 20px rgba(236, 72, 153, 0.5));
    text-shadow: 
        0 0 20px rgba(255, 31, 140, 0.6),
        0 0 40px rgba(109, 68, 255, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.2);
    animation: iconGlow 3s ease-in-out infinite;
}

.icon-3d-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 31, 140, 0.3) 0%, transparent 70%);
    transform: translateZ(-20px) scale(1.5);
    border-radius: 50%;
    animation: iconBackGlow 3s ease-in-out infinite;
    opacity: 0.6;
}

.floating-icon.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    transform: translateZ(60px) rotateY(20deg) rotateX(10deg);
}

.floating-icon.icon-1 .icon-3d-front {
    filter: 
        drop-shadow(0 15px 30px rgba(255, 31, 140, 0.5))
        drop-shadow(0 0 25px rgba(255, 31, 140, 0.6));
}
.top-main-eading h2 {
  font-weight: 800;
  margin-bottom: 22px;
}
.top-main-eading h2 .red {
    background: red;
    padding: 6px 15px;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    position: relative;
}
.top-main-eading h2 .green {
  background: green;
  padding: 6px 15px;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
}

.floating-icon.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.2s;
    transform: translateZ(50px) rotateY(-25deg) rotateX(-8deg);
}

.floating-icon.icon-2 .icon-3d-front {
    filter: 
        drop-shadow(0 15px 30px rgba(109, 68, 255, 0.5))
        drop-shadow(0 0 25px rgba(109, 68, 255, 0.6));
}

.floating-icon.icon-3 {
    top: 50%;
    left: 5%;
    animation-delay: 2.4s;
    transform: translateZ(55px) rotateY(30deg) rotateX(5deg);
}

.floating-icon.icon-3 .icon-3d-front {
    filter: 
        drop-shadow(0 15px 30px rgba(236, 72, 153, 0.5))
        drop-shadow(0 0 25px rgba(236, 72, 153, 0.6));
}

.floating-icon.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3.6s;
    transform: translateZ(45px) rotateY(-20deg) rotateX(12deg);
}

.floating-icon.icon-4 .icon-3d-front {
    filter: 
        drop-shadow(0 15px 30px rgba(59, 130, 246, 0.5))
        drop-shadow(0 0 25px rgba(59, 130, 246, 0.6));
}

.floating-icon.icon-5 {
    top: 30%;
    left: 50%;
    animation-delay: 4.8s;
    transform: translateZ(65px) rotateY(35deg) rotateX(-5deg);
}

.floating-icon.icon-5 .icon-3d-front {
    filter: 
        drop-shadow(0 15px 30px rgba(255, 31, 140, 0.5))
        drop-shadow(0 0 25px rgba(236, 72, 153, 0.6));
}

.floating-icon.icon-6 {
    bottom: 15%;
    left: 20%;
    animation-delay: 6s;
    transform: translateZ(40px) rotateY(-30deg) rotateX(8deg);
}

.floating-icon.icon-6 .icon-3d-front {
    filter: 
        drop-shadow(0 15px 30px rgba(109, 68, 255, 0.5))
        drop-shadow(0 0 25px rgba(59, 130, 246, 0.6));
}

/* Multi-Gradient Text Effects */

.gradient-text-1 {
    background: linear-gradient(135deg, #00ad4f 0%, #10b981 25%, #34d399 50%, #10b981 75%, #00ad4f 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextFlow 4s ease infinite;
    font-weight: 900;
    filter: drop-shadow(0 2px 4px rgba(0, 173, 79, 0.4)) drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
    text-shadow: 0 0 15px rgba(0, 173, 79, 0.3);
    position: relative;
    display: inline-block;
    transform: translateZ(10px);
}

.gradient-text-2 {
    background: linear-gradient(135deg, #dc2626 0%, #ff1f8c 15%, #ec4899 30%, #f472b6 45%, #fb7185 60%, #ff1f8c 75%, #ec4899 90%, #dc2626 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextFlow 5s ease infinite;
    font-weight: 900;
    filter: drop-shadow(0 3px 6px rgba(255, 31, 140, 0.5)) drop-shadow(0 0 12px rgba(255, 31, 140, 0.3));
    text-shadow: 0 0 25px rgba(255, 31, 140, 0.4);
}

.gradient-text-3 {
    background: linear-gradient(135deg, #dc2626 0%, #ff1f8c 20%, #ec4899 35%, #a855f7 50%, #7c3aed 65%, #3b82f6 80%, #06b6d4 95%, #0891b2 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextFlow 6s ease infinite;
    font-weight: 900;
    filter: drop-shadow(0 2px 5px rgba(255, 31, 140, 0.4)) drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
    text-shadow: 0 0 20px rgba(255, 31, 140, 0.3);
}

.gradient-text-4 {
    background: linear-gradient(135deg, #dc2626 0%, #ff1f8c 25%, #ec4899 40%, #a855f7 60%, #7c3aed 75%, #3b82f6 90%, #06b6d4 100%);
    background-size: 350% 350%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextFlow 5.5s ease infinite;
    font-weight: 900;
    filter: drop-shadow(0 2px 4px rgba(255, 31, 140, 0.4)) drop-shadow(0 0 8px rgba(168, 85, 247, 0.3));
    text-shadow: 0 0 18px rgba(255, 31, 140, 0.3);
}

.gradient-text-5 {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 15%, #fbbf24 30%, #fcd34d 45%, #fbbf24 60%, #f59e0b 75%, #d97706 90%, #b45309 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextFlow 4.5s ease infinite;
    font-weight: 800;
    filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.5)) drop-shadow(0 0 10px rgba(251, 191, 36, 0.3));
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes bg3dMove {
    0%, 100% { 
        transform: perspective(1200px) rotateX(8deg) rotateY(2deg) scale(1.15);
    }
    25% { 
        transform: perspective(1200px) rotateX(10deg) rotateY(4deg) scale(1.18);
    }
    50% { 
        transform: perspective(1200px) rotateX(6deg) rotateY(-2deg) scale(1.2);
    }
    75% { 
        transform: perspective(1200px) rotateX(9deg) rotateY(3deg) scale(1.17);
    }
}

@keyframes gradientRotate {
    0% { 
        transform: perspective(1000px) rotateX(-5deg) rotateZ(0deg) scale(1.2);
    }
    100% { 
        transform: perspective(1000px) rotateX(-5deg) rotateZ(360deg) scale(1.2);
    }
}

@keyframes particlesMove {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%;
    }
    25% { 
        background-position: 25% 25%, 75% 75%, 75% 25%, 25% 75%, 50% 50%;
    }
    50% { 
        background-position: 50% 50%, 50% 50%, 100% 0%, 0% 100%, 0% 100%;
    }
    75% { 
        background-position: 75% 75%, 25% 25%, 25% 75%, 75% 25%, 100% 0%;
    }
}

@keyframes float3d {
    0%, 100% { 
        transform: translateY(0) translateZ(0) rotateY(0deg) rotateX(0deg) scale(1);
        opacity: 0.85;
    }
    20% { 
        transform: translateY(-25px) translateZ(30px) rotateY(72deg) rotateX(10deg) scale(1.15);
        opacity: 1;
    }
    40% { 
        transform: translateY(-15px) translateZ(20px) rotateY(144deg) rotateX(-5deg) scale(1.1);
        opacity: 0.9;
    }
    60% { 
        transform: translateY(-30px) translateZ(35px) rotateY(216deg) rotateX(8deg) scale(1.2);
        opacity: 0.95;
    }
    80% { 
        transform: translateY(-20px) translateZ(25px) rotateY(288deg) rotateX(-8deg) scale(1.12);
        opacity: 0.88;
    }
}

@keyframes iconGlow {
    0%, 100% { 
        filter: 
            drop-shadow(0 15px 30px rgba(255, 31, 140, 0.4))
            drop-shadow(0 5px 15px rgba(109, 68, 255, 0.3))
            drop-shadow(0 0 20px rgba(236, 72, 153, 0.5));
        transform: translateZ(30px) scale(1);
    }
    50% { 
        filter: 
            drop-shadow(0 20px 40px rgba(255, 31, 140, 0.6))
            drop-shadow(0 8px 20px rgba(109, 68, 255, 0.5))
            drop-shadow(0 0 30px rgba(236, 72, 153, 0.7));
        transform: translateZ(35px) scale(1.05);
    }
}

@keyframes iconBackGlow {
    0%, 100% { 
        opacity: 0.6;
        transform: translateZ(-20px) scale(1.5);
    }
    50% { 
        opacity: 0.9;
        transform: translateZ(-25px) scale(1.7);
    }
}

@keyframes gradientTextFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.container
{
         max-width: 1120px;
         margin: 0 auto;
}
.main-header .nav-link:hover {
    color: #7465fe;
}
.proof-grid-images img {
    width: 100%;
}
p.real-tok {
  color: #fff;
  font-size: 19px;
  padding: 0 30px;
}
p.real-tok span
{
  color: #ff1f8c;
  font-weight: 700;
}
.imgf-demo-play img {
    width: 100%;
}
span.main-tok-ai {
  width: auto;
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 0 auto 30px;
  display: table;
  padding: 24px 48px;
  border-radius: 20px;
  max-width: 950px;
  position: relative;
  z-index: 9;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 254, 0.99) 50%, rgba(255, 248, 250, 0.98) 100%);
  backdrop-filter: blur(25px) saturate(180%);
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: 
    0 20px 60px rgba(255, 31, 140, 0.3),
    0 0 0 3px rgba(255, 31, 140, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 0 rgba(255, 31, 140, 0.08);
  transform: perspective(1000px) translateZ(30px) rotateX(2deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatCard 6s ease-in-out infinite;
}

span.main-tok-ai::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #ff1f8c 0%, #ec4899 25%, #a855f7 50%, #3b82f6 75%, #06b6d4 100%);
  background-size: 300% 300%;
  border-radius: 20px;
  z-index: -1;
  opacity: 0.8;
  animation: gradientShift 4s ease infinite;
  filter: blur(8px);
}

span.main-tok-ai:hover {
  transform: perspective(1000px) translateZ(50px) rotateX(0deg) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(255, 31, 140, 0.35),
    0 0 0 3px rgba(255, 31, 140, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 31, 140, 0.15);
}

@keyframes floatCard {
  0%, 100% { 
    transform: perspective(1000px) translateZ(30px) rotateX(2deg) translateY(0);
  }
  50% { 
    transform: perspective(1000px) translateZ(40px) rotateX(1deg) translateY(-5px);
  }
}
section.launch-timeline h1 {
  text-align: center;
  color: #6d44ff;
}
section.prelaunc-lead {
  background: rgb(135,86,255);
  background: -moz-linear-gradient(45deg, rgba(135,86,255,1) 0%, rgba(112,52,255,1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(135,86,255,1) 0%,rgba(112,52,255,1) 100%);
  background: linear-gradient(45deg, rgba(135,86,255,1) 0%,rgba(112,52,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8756ff', endColorstr='#7034ff',GradientType=1 );
  padding: 60px 0;
}
section.launch-timeline h6 {
  text-align: center;
  font-size: 18px;
}
.arrow {
  text-align: center;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
img.arrow.bounce {
    position: relative;
    top: 30px;
}
.tp-showcase__image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.tp-showcase__image {
    margin-bottom: 16px;
}
.down-arrow span {
    text-align: center;
    width: 100%;
    display: table;
}

.paypal-wrap {
    background-image: url("https://imagedelivery.net/gmO3Si5-ALsji_V36_2olg/9a6fd0e8-dcb7-4a18-fa56-9a46352d8300/public");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    padding: 35px 20px;
    background-position: center bottom;

}
.mf-demo-play video, .imgf-demo-play video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.paypal-btn.section-wrap {
    padding: 50px 0;
}
.reality-wrap {
    background-image: url(https://imagedelivery.net/gmO3Si5-ALsji_V36_2olg/9a6fd0e8-dcb7-4a18-fa56-9a46352d8300/public);
    background-repeat: no-repeat;
    background-size: cover;
}
span#mfDemoPlaceholder {
    display: none;
}
.launch-speed {
    text-align: center;
    width: 100%;
    padding: 29px 0 0;
}

.launch-speed p {
  font-size: 34px;
  text-align: center;
  font-weight: 800;
}
.tp-footer-row a {
    margin: 0 auto;
}

.oto-cards {
    text-align: center;
    width: 100%;
}
.oto-cards p.pay-down {
    font-size: 22px;
    margin: 19px 0 31px;
}
span.use-code {
    width: 100%;
    display: table;
    text-align: center;
    font-size: 20px;
    margin: 18px 0 7px;
}
.dx-capsule-shimmer {
    pointer-events: none;
    position: absolute;
    top: -60%;
    left: -40%;
    width: 60%;
    height: 220%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.95) 45%,
      rgba(251, 191, 36, 0.3) 50%,
      rgba(255, 255, 255, 0.95) 55%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-130%) skewX(-18deg);
    opacity: 0;
    mix-blend-mode: overlay;
    animation: dxCapsuleSweep 8s ease-in-out infinite;
    filter: blur(2px);
}
.grad-bk {
    position: relative;
    max-width: 980px;
    padding: 26px 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 251, 235, 0.98) 25%,
        rgba(254, 243, 199, 0.95) 50%,
        rgba(255, 251, 235, 0.98) 75%,
        rgba(255, 255, 255, 0.95) 100%);
    background-size: 200% 200%;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
      0 0 0 3px rgba(251, 191, 36, 0.5),
      0 20px 60px rgba(251, 191, 36, 0.35),
      inset 0 2px 0 rgba(255, 255, 255, 1),
      inset 0 -2px 0 rgba(251, 191, 36, 0.15);
    backdrop-filter: blur(25px) saturate(180%);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto 24px;
    transform: perspective(1000px) translateZ(20px);
    animation: gradientShift 5s ease infinite, floatButton 8s ease-in-out infinite;
}

.grad-bk::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        #fbbf24 0%, 
        #f59e0b 25%, 
        #d97706 50%, 
        #f59e0b 75%, 
        #fbbf24 100%);
    background-size: 300% 300%;
    border-radius: 999px;
    z-index: -1;
    opacity: 0.6;
    animation: gradientShift 4s ease infinite;
    filter: blur(12px);
}

.grad-bk:hover {
    transform: perspective(1000px) translateZ(40px) scale(1.02);
    box-shadow: 
      0 0 0 3px rgba(251, 191, 36, 0.5),
      0 30px 80px rgba(251, 191, 36, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(251, 191, 36, 0.3);
}

@keyframes floatButton {
  0%, 100% { 
    transform: perspective(1000px) translateZ(20px) translateY(0);
  }
  50% { 
    transform: perspective(1000px) translateZ(30px) translateY(-3px);
  }
}
.dx-glow-separator {
    width: 300px;
    height: 6px;
    border-radius: 999px;
    margin: 30px auto 40px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ec4899 20%, 
        #a855f7 50%, 
        #3b82f6 80%, 
        transparent 100%);
    background-size: 200% 100%;
    box-shadow: 
      0 0 20px rgba(236, 72, 153, 0.6),
      0 0 40px rgba(168, 85, 247, 0.5),
      0 0 60px rgba(59, 130, 246, 0.4),
      inset 0 1px 2px rgba(255, 255, 255, 0.5);
    opacity: 1;
    transform: perspective(1000px) translateZ(10px);
    animation: glowPulse 3s ease-in-out infinite, gradientShift 4s ease infinite;
    position: relative;
    z-index: 9;
}

.dx-glow-separator::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, #ec4899 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.8);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 1;
        transform: perspective(1000px) translateZ(10px) scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: perspective(1000px) translateZ(15px) scale(1.1);
    }
}

a.cta-button-main span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, transparent, #d09500);
    animation: animate1 1s linear infinite;
       position: absolute;
    display: block;
}

a.cta-button-main span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #d09500);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
       position: absolute;
    display: block;
}
a.cta-button-main span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(270deg, transparent, #ffbd17);
    animation: animate3 1s linear infinite;
       position: absolute;
    display: block;
    animation-delay: 0.5s;
}.down-arrow.oposit-error {
    margin-top: -50px;
}
section.tp-showcase .grad-bk {
    margin-top: 30px;
    margin-bottom: 30px;
}
.image-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
}
.tiktok-attention__headline span {
    color: #00baff;
    border: 2px solid;
    padding: 4px 20px;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    top: 10px;
    font-size: 32px;
}
.video-colg {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.video-colg video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.video-colg img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    height: auto;
    pointer-events: none;
}
a.cta-button-main span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #ffbd17);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
       position: absolute;
    display: block;
}

section.prelaunc-lead h2 {
  text-align: center;
  color: #fff;
  font-size: 60px;
  text-shadow: 1px 1px 1px #000;
  font-weight: 800;
}
section#prizes h2 span {
  color: #FEDC01;
}
.launch-date {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 33px;
}
.launch-date h5 {
  background: #300560;
  color: #fff;
  font-size: 29px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.launch-date h5 img {
  margin-right: 11px;
}
.launch-date h5 img:last-child {
  margin-left: 23px;
}
.launch-date span {
  color: #fff;
  font-size: 27px;
  background: transparent;
  border-radius: 100px;
  width: 54px;
  height: 54px;
  margin: 0 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 1px #dddddd4f;
  padding-top: 6px;
}
.prelaunc-lead-left ul li {
  list-style: none;
  background: #fff;
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
  padding: 14px 22px;
  display: flex;
  align-items: center;
}
.prelaunc-lead-left ul li h5 {
  font-size: 38px;
  margin: 10px 110px 0 41px;
  color: #20253D;
  min-width: 234px;
}
.prelaunc-lead-left ul li span {
  font-size: 38px;
  margin: 11px 0 0;
  background: -webkit-linear-gradient(#b190ff, #7034FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.prelaunc-lead-right {
  background: #fff;
  padding: 30px 30px 8px;
  border-radius: 8px;
}
.prelaunc-lead-right h4 {
  text-align: center;
  font-size: 36px;
}
section.prelaunc-lead .prelaunc-lead-right p {
  color: #20253D;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
  margin-bottom: 23px;
}
section.launch-cup {
  padding: 50px 0 50px;
  position: relative;
  background-image: url(https://imagedelivery.net/gmO3Si5-ALsji_V36_2olg/e5ccdc25-87c5-4961-196b-1dbce5979c00/public);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
section.launch-cup h2 {
  color: #003957;
  font-size: 75px;
  text-align: center;
  margin: 0 auto 55px;
  display: table;
  position: relative;
}
.launc-des {
  padding-bottom: 20px;
}
.launc-des {
  text-align: center;
}
.launc-des h3 {
  font-size: 46px;
  color: #3518B4;
  font-weight: 600;
}
  .launc-des p {
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
    padding: 0 100px;
}
.launc-des-cup ul {
  padding: 0;
}
section.launch-cup h2::before {
  content: "";
  width: 100%;
  height: 9px;
  border-radius: 10px;
  background: #FF5050;
  position: absolute;
  bottom: 0;
}
.launc-des-cup ul li {
  list-style: none;
  background: #fff;
  background: -moz-linear-gradient(top,rgba(255,255,255,1) 0%,rgba(255,251,238,1) 100%);
  background: -webkit-linear-gradient(top,rgba(255,255,255,1) 0%,rgba(255,251,238,1) 100%);
  background: linear-gradient(to bottom,rgba(255,255,255,1) 0%,rgba(255,251,238,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff',endColorstr='#fffbee',GradientType=0 );
  border: 3px solid #fec301;
  border-radius: 10px;
  margin-bottom: 31px;
  box-shadow: 3px 4px 1px 1px #fec301;
  display: flex;
  padding: 15px 0;
  align-items: center;
}
.launc-des-cup ul li img {
  max-width: 79px;
}
.launc-des-cup li h4 {
  color: #2C3C47;
  font-size: 38px;
  margin: 6px 0 0;
  padding-left: 23px;
  min-width: 310px;
}
.launc-des-cup ul li:first-child img {
  max-width: 123px;
  position: relative;
  margin-top: -55px;
  left: -16px;
}
.launc-des-cup li:first-child h4 {
  padding: 0;
  margin-left: -15px;
}
.launc-des-cup li span {
  font-size: 35px;
  color: #2C3C47;
  margin: 8px 0 0;
  font-weight: 600;
}
.launc-des-cup ul li:first-child span {
  color: #E3335B;
  margin-left: -29px;
}
.launc-des-cup ul li:nth-child(2) span {
  color: #003FBC;
}
.launc-des-cup ul li:nth-child(3) span {
  color: #30AF6E;
}
section.launch-cup h6 {
  font-size: 26px;
  color: #E3335B;
  text-align: center;
}
.launc-des-cup.pr-3 p {
  font-size: 14px;
  text-align: center;
}

.launc-des-cup ul li:nth-child(2) {
  border-color: #08CCFE;
  box-shadow: 3px 4px 1px 1px #08CCFE;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(229,250,255,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,250,255,1) 100%);
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,250,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5faff',GradientType=0 );
}
.launc-des-cup ul li:nth-child(3) {
  border-color: #49CA88;
  box-shadow: 3px 4px 1px 1px #49CA88;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(241,255,248,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(241,255,248,1) 100%);
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(241,255,248,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f1fff8',GradientType=0 );
}
.launc-des-cup ul li:nth-child(4), .launc-des-cup ul li:last-child {
  border-color: #D6D6D6;
  box-shadow: 3px 4px 1px 1px #D6D6D6;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(239,239,239,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(239,239,239,1) 100%);
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(239,239,239,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=0 );
}
section.promoter-sec {
  padding: 50px 0;
  background-image: url(https://imagedelivery.net/gmO3Si5-ALsji_V36_2olg/7399a8ad-cd0a-4ed9-8676-d8dde5194100/public);
  background-repeat: no-repeat;
  background-size: cover;
}
section.promoter-sec h2 {
  text-align: center;
  margin-bottom: 70px;
  font-size: 55px;
}
section.new-agrigat {
    background: #faeffe;
    padding: 60px 0;
    text-align:center;
}
.my-partner-outer img.absolute:nth-child(2) {
    position: absolute;
    right: -70px;
    top: 50px;
}
.my-partner-outer img.absolute:first-child {
    position: absolute;
    left: -60px;
    top: 60px;
}
.my-partner h4 {
    font-size: 30px;
    margin-bottom: 22px;
}
.my-partner button {
    width: 27%;
    background: transparent;
    border: 0;
    color: #000;
    margin: 8px 0;
    text-align: left;
}
.my-partner button a {
    color: #000;
    text-decoration: none;
    font-size: 17px;
}
section.meet-agricator div {
    text-align: center;
}
.my-partner-outer {
    background-color: #E8A1FF;
    border-radius: 20px;
    position: relative;
    margin-top: 30px;
    padding: 33px 0;
}
section.meet-agricator {
    background-color: #36074E;
    padding: 70px 0;
}
section.meet-agricator h3 {
    font-size: 58px;
    font-weight: 700;
}
section.meet-agricator p {
    font-size: 23px;
}
section.new-agrigat img {
    margin: 20px 0;
}
.promoter-sec-left img {
    position: relative;
    left: -204px;
    top: -23px;
}
.promoter-sec-right {
  display: flex;
}
.promoter-sec-right-col {
  width: 50%;
  padding: 0 11px;
}
.pro-sec-blog {
  background: #DBF7FE;
  border: 1px solid #78DBF5;
  padding: 20px 10px;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0px 6px 2px 0px #AAD7EF;
} 
.pro-sec-blog h4 {
  position: relative;
  font-size: 18px;
  line-height: 27px;
  padding-left: 44px;
  color: #2C3C47;
  margin-bottom: 0;
}

.pro-sec-blog h4 img {
  position: absolute;
  left: -8px;
}
.pro-sec-blog p {
  padding-left: 43px;
  font-size: 17px;
  color: #2C3C47;
  line-height: 25px;
  margin-top: 9px;
  margin-bottom: 16px;
}
.pro-sec-blog.pro-fr-jv {
  background: #E7FEE7;
  border-color: #84F8BD;
  box-shadow: 0px 6px 2px 0px #BDF3BD;
}.pro-sec-blog.pro-fv-jv {
  background: #F9F6FF;
  border-color: #C6B1F8;
  box-shadow: 0px 6px 2px 0px #E1D2FF;
}.pro-sec-blog.pro-sx-jv {
  background: #FFECF1;
  border-color: #FFC9D6;
  box-shadow: 0px 6px 2px 0px #F9D2FF;
}
.pro-sec-blog.pro-gr-jv {
  background: #E7FEE7;
  border-color: #84F8BD;
  box-shadow: 0px 6px 2px 0px #BDF3BD;
}
.pro-sec-blog.pro-sec-jv {
  background: #FFFAE8;
  border-color: #FEC301;
  box-shadow: 0px 6px 2px 0px #F9D99D;
}
.pro-sec-blog.pro-thr-jv {
  background: #F9F6FF;
  border-color: #C6B1F8;
  box-shadow: 0px 6px 2px 0px #E1D2FF;
}
section.track-records h2 {
  font-size: 46px;
  color: #3518B4;
  text-align: center;
  border-top: 1px dashed #ddd;
  padding-top: 50px;
  font-weight: 700;
}
section.track-records p {
  font-size: 29px;
  text-align: center;
  margin-bottom: 70px;
}

section.track-records ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
section.track-records ul li {
  list-style: none;
  width: 18.7%;
  margin: 0 7px;
  background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 1%, rgba(255,255,255,0.83) 73%, rgba(230,245,255,0.77) 100%);
  background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 1%,rgba(255,255,255,0.83) 73%,rgba(230,245,255,0.77) 100%);
  background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 1%,rgba(255,255,255,0.83) 73%,rgba(230,245,255,0.77) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#c4e6f5ff',GradientType=1 );
  border: 1px solid #10BEFE;
  border-radius: 4px;
  padding: 0 13px 14px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 1px 2px 6px 3px #A8DBF6;
}
section.track-records ul li h5 {
  font-size: 26px;
  color: #fff;  
  background: #00A8FF;
  margin: -17px auto 13px;
  display: table;
  padding: 1px 20px;
  border-radius: 2px;
  font-weight: 700;
  box-shadow: 0px 2px 1px 1px #0099FF;
}
section.track-records ul li img {
  max-width: 93%;
} 
section.receplotae {
  padding-top: 22px;
  padding-bottom: 90px;
}
section.receplotae h2 {
  border-top: 1px dashed #ddd;
  padding-top: 50px;
  text-align: center;
  color: #1B2E4E;
  font-size: 63px;
  font-weight: 700;
}
section.receplotae p {
  text-align: center;
  font-size: 28px;
  margin-bottom: 5px;
  color: #2B446E;
}
section.receplotae h4 {
  text-align: center;
  width: 100%;
  margin-bottom: 55px;
}
section.receplotae h4 u {
  font-size: 28px;
  text-decoration: underline;
  color: #0099FF;
}
.receplotae-inner {
  border: 1px solid #dcf1ff;
  border-radius: 9px;
  text-align: center;
  padding: -1px 0 40px;
  min-height: 138px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #1aa8ff;
}
.receplotae-inner span {
  font-size: 20px;
  text-align: center;
  width: 100%;
  float: left;
  color: #62667a;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: center;
  width: 100%;
  float: left;
  color: #083580;
  margin-bottom: 20px;
  background: #c9edff;
  padding: 10px 0;
}
.receplotae-inner img {
  max-height: 35px;
  object-fit: contain;
  max-height: 58px;
  object-fit: contain;
  max-width: 180px;
}
section.receplotae .col-md-4 {
  padding: 0 8px;
  width: 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
section.welcm-introduction {
  background: -moz-linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 41%, rgba(255,255,255,0.76) 49%, rgba(125,185,232,0.51) 100%);
  background: -webkit-linear-gradient(45deg, rgba(255,255,255,1) 0%,rgba(255,255,255,0.8) 41%,rgba(255,255,255,0.76) 49%,rgba(125,185,232,0.51) 100%);
  background: linear-gradient(45deg, rgba(255,255,255,1) 0%,rgba(255,255,255,0.8) 41%,rgba(255,255,255,0.76) 49%,rgba(125,185,232,0.51) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#827db9e8',GradientType=1 );
  padding: 70px 0;
  background-image: url(https://imagedelivery.net/gmO3Si5-ALsji_V36_2olg/f5323165-6636-4c6f-b46f-096646dcaf00/public);
  background-repeat: no-repeat;
  background-size: cover;
}

section.jv-get-touch h2 {
  text-align: center;
  margin: 0 auto;
  display: table;
  padding: 0 20px;
  position: relative;
  font-size: 48px;
font-weight: 700;
}
section.jv-get-touch h2 img {
  margin-right: 14px;
}

.welcm-introduction-left ul {
  margin: 0;
  padding: 0;
}
.welcm-introduction-left ul li {
  font-size: 24px;
  border-bottom: 1px solid #ddd;
  width: 100%;
  float: left;
  padding: 13px 0;
  line-height: 41px;
  list-style: none;
  position: relative;
  padding-left: 60px;
  font-size: 23px;
}
.welcm-introduction-left ul li img {
  position: absolute;
  left: 0;
  top: 7px;
}
.welcm-introduction-right img {
  position: relative;
  left: 30px;
}
section.jv-brands h2 img {
  margin-left: 16px;
}
section.jv-brands p {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}
.fobes img {
  width: 100%;
}
section.jv-brands {
  padding: 50px 0 90px;
}
section.jv-brands h2 {
  text-align: center;
  font-size: 47px;
  font-weight: 700;
}
section.jv-brands p span {
  border-bottom: 4px solid #0099FF;
  padding-bottom: 5px;
}
img.brand-logo {
  width: 100%;
  margin-bottom: 90px;
}
.jv-brand-own {
  background-image: url(https://imagedelivery.net/gmO3Si5-ALsji_V36_2olg/90dce6ab-64ef-4d71-545e-035bd5d33900/public);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0px 0 0;
  text-align: center;
  background-position: center;
}
.payment-jv-left img {
  width: 100%;
}
.payment-jv-right::before {
  width: 190px;
  height: 310px;
  background-image: url(https://imagedelivery.net/gmO3Si5-ALsji_V36_2olg/a6cad0a2-1f29-48bc-f175-a5ae7bb6d500/public);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: -133px;
  bottom: -20px;
} 
.payment-jv-right h3 {
  font-size: 28px;
  text-align: center;
font-weight: 700;
  color: #083580;
  margin-bottom: 15px;
}
.payment-data {
  background: #a2d8ff40;
  border: 1px solid #a2d8ff40;
  border-radius: 6px;
  padding: 21px;
  max-width: 91%;
  margin: 0 auto;
}
.payment-data a {
  background: #4291F8;
  width: 100%;
  display: table;
  max-width: 425px;
  margin: 0 auto 15px;
  height: 70px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  font-size: 27px;
  color: #fff;
  padding: 0 9px;
  box-shadow: 1px 4px 1px 1px #0153BB;
  position: relative;
  padding-left: 75px;
  text-decoration: none;
}
.payment-data a span {
  position: absolute;
  left: 0;
  top: 0;
  border-right: 1px solid #dddddd42;
  height: 100%;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0px 10px;
  width: 56px;
  justify-content: center;
  text-align: center;
}
.payment-data a:last-child {
  background: #00BAFF;
  box-shadow: 1px 4px 1px 1px #0C96CB;
}

.payment-data h5 {
  font-size: 26px;
  line-height: 34px;
  color: #394271;
font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.oto-sec-pro-inner {
  background: linear-gradient(135deg, #ffffff 0%, #f8f5ff 50%, #f0ebff 100%);
  border: 2px solid #D5C4FF;
  border-radius: 20px;
  padding: 70px 50px 50px;
  box-shadow: 0 20px 60px rgba(213, 196, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.oto-sec-pro-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(213, 196, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.oto-sec-pro-inner:hover {
  box-shadow: 0 25px 80px rgba(213, 196, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transform: translateY(-5px);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.oto-sec-pro-text {
  padding: 30px 50px 0;
  position: relative;
  z-index: 1;
}
.oto-sec-pro-left {
  position: relative;
  z-index: 1;
}
img.disc-3 {
  position: absolute;
  bottom: 420px;
  left: 4px;
}
.commercialplans-inner.commercialplans-two h5 img {
  width: auto;
}
.commercialplans-inner.commercialplans-two {
  background: #2F7AFC;
  position: relative;
  padding-bottom: 1px;
}
.commercialplans-inner h6 {
  font-size: 24px;
  line-height: 36px;
  color: #fff;
  text-align: center;
font-weight: 800;
  margin: -12px 0 28px;
}
.commercialplans-inner.commercialplans-two h5 {
  width: 100%;
  max-width: 93%;
  border-radius: 0;
  background: #fff;
  color: #043359;
  font-size: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;

  height: 69px;
}
.commercialplans-inner.commercialplans-two h3 {
  color: #0036B5;
}
.commercialplans-inner.commercialplans-two h5 img {
  margin: 0 10px 0 0;
}
.commercialplans-inner {
  background: #F6F6F6;
  border: 1px solid #70707021;
  border-radius: 6px;
  padding: 15px 20px 20px;
}
section.realty-check h2 {
  font-size: 51px;
  color: #E3335B;
  text-align: center;
  text-transform: capitalize;
  border-top: 1px dashed #ddd;
  font-weight:800;
  padding-top: 100px;
  margin-bottom: 70px;
}
.oto-cards img {
  width: 100%;
}
.commercialplans-inner ul li.no-border-page {
  border: 0;
}
section.commercial-plans {
  padding-top: 60px;
}
section.commercial-plans.oto-one-commercial-plans > .container > h6 {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(227, 51, 91, 0.16), rgba(94, 211, 74, 0.16));
  border: 1px solid rgba(227, 51, 91, 0.28);
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  color: #6f1e3a;
  box-shadow: 0 10px 24px rgba(227, 51, 91, 0.12);
}
section.commercial-plans.oto-one-commercial-plans > .container > h2 {
  margin: 0 auto 28px;
  max-width: 1050px;
  text-align: center;
  font-size: clamp(34px, 4vw, 51px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  color: #e3335b;
  background: linear-gradient(92deg, #ff4f8d 0%, #e3335b 32%, #ff8a00 68%, #ffd34f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 24px rgba(227, 51, 91, 0.2);
}
section.commercial-plans.oto-one-commercial-plans > .container > h2::after {
  content: "";
  display: block;
  width: min(280px, 55%);
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #e3335b, #ff8a00, #ffd34f);
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.45);
}
li.no-border-page.red-zone {
  text-decoration: line-through;
}
section.commercial-plans .row {
  border-top: 1px dashed #ddd;
  padding-top: 110px;
}
.oto-cards p {
  font-size: 18px;
  text-align: center;
  color: #878787;
 font-weight:600;
  margin: 24px 0 7px;
}
.commercialplans-inner ul h3 {
  line-height: 30px;
  font-size: 24px;
  color: #505050;
  font-weight: 700;
  margin: 18px 0 30px;
  text-transform: uppercase;
}
.commercialplans-inner ul h6 {
  font-size: 29px;
  color: #B7546A;
  font-weight:800;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 34px;
  padding-top: 40px;
  padding-bottom: 25px;
  text-decoration: line-through;
}
.oto-cards {
  padding-top: 30px;
}
.oto-cards img:first-child {
  max-width: 340px;
  margin: 0 auto;
  display: table;
}
.commercialplans-inner ul button {
  font-size: 26px;
  background: #888888;
  border-radius: 5px;
  border: 0;
  color: #fff;
  width: 100%;
  height: 63px;
  box-shadow: 0px 3px 1px 1px #5f5f5f;
  position: relative;
  background: #5ED34A;
  width: 100%;
  height: 78px;
  font-size: 25px;
  box-shadow: 0 5px 1px 1px #41AB49;
  color: #fff;
}
span.oto-bought {
  background-image: url(../images/last-boutght.png);
  background-repeat: no-repeat;
  width: 267px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #171263;
  font-weight: 800;
  margin: auto;
  padding-top: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.commercialplans-inner ul button a {
  color: #fff;
  font-weight: 600;
}
.commercialplans-inner ul button::before {
  width: 100%;
  height: 2px;
  background: red;
  content: "";
  position: absolute;
  left: 0;
  transform: rotate(-7deg);
  top: 31px;
}
.commercialplans-inner.commercialplans-two button::before, .commercialplans-inner.commercialplans-two button::after {
  display:none;
}
.commercialplans-inner ul button::after {
  width: 100%;
  height: 2px;
  background: red;
  content: "";
  position: absolute;
  left: 0;
  transform: rotate(7deg);
  top: 31px;
}
.commercialplans-inner ul li {
  list-style: none;
  font-size: 20px;
 font-weight:600;
  padding-left: 40px;
  line-height: 30px;
  position: relative;
  border-bottom: 1px solid #ddd;
  padding: 12px 0 12px 41px;
 font-weight: 600;
  color: #20253D;
}
.commercialplans-inner ul {
  padding: 0;
  box-shadow: 0 0 10px 1px #ddddddbf;
  background: #fff;
  border-radius: 10px;
  padding: 35px 30px 80px;
}
.commercialplans-inner ul li img {
  position: absolute;
  left: 0;
  max-width: 23px;
}
.commercialplans-inner h5 {
  font-size: 31px;
  font-weight:800;
  background: #39528A;
  height: 68px;
  border-radius: 100px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 455px;
  margin: 0 auto 50px;
}
img.comm-logo {
  margin: 40px auto 34px;
  display: table;
  width: 100%;
}
section.realty-check h2 span {
  color: #0036B5;
}
section.list-build ul {
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px dashed #ddd;
}
.realty-check-right p {
  font-size: 25px;
  line-height: 41px;
  color: #20253D;
  font-family: 'Axiforma-med';
  margin-bottom: 35px;
}
.realty-check-right p:last-child {
  margin-bottom: 0;
}
.oto-sec-pro-left img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.oto-sec-pro-right {
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.oto-sec-pro-right ul {
  width: 100%;
  float: left;
  padding: 0;
  margin-top: 20px;
  position: relative;
}

/* Enhanced Premium Heading Design */
.tokprime-wrapper {
  position: relative;
  max-width: 900px;
  margin: 60px auto -40px;
  padding: 40px 50px;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  z-index: 1;
}

.tokprime-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(255, 31, 140, 0.15) 0%, rgba(109, 68, 255, 0.15) 50%, rgba(236, 72, 153, 0.15) 100%),
    radial-gradient(circle at 20% 30%, rgba(255, 31, 140, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(109, 68, 255, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #fff5f8 100%);
  background-size: 200% 200%, 100% 100%, 100% 100%, 100% 100%;
  animation: tokprimeGradient 8s ease infinite;
  border: 2px solid transparent;
  border-radius: 30px;
  z-index: 0;
}

.tokprime-bg::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(135deg, #ff1f8c, #6d44ff, #ec4899, #6d44ff);
  background-size: 300% 300%;
  animation: tokprimeBorder 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

@keyframes tokprimeGradient {
  0%, 100% { background-position: 0% 50%, 0% 0%, 0% 0%, 0% 0%; }
  50% { background-position: 100% 50%, 100% 100%, 100% 100%, 0% 0%; }
}

@keyframes tokprimeBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.tokprime-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.tokprime-icon {
  position: absolute;
  font-size: 32px;
  opacity: 0.6;
  animation: tokprimeIconFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.tokprime-icon-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.tokprime-icon-2 {
  top: 20%;
  right: 10%;
  animation-delay: 0.8s;
  font-size: 36px;
}

.tokprime-icon-3 {
  bottom: 25%;
  left: 12%;
  animation-delay: 1.6s;
}

.tokprime-icon-4 {
  bottom: 20%;
  right: 8%;
  animation-delay: 2.4s;
  font-size: 38px;
}

.tokprime-icon-5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 3.2s;
  font-size: 28px;
  opacity: 0.4;
}

@keyframes tokprimeIconFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-15px) rotate(10deg) scale(1.1);
  }
}

.tokprime {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tokprime-text-1 {
  display: block;
  color: #1f2937;
  font-weight: 700;
}

.tokprime-premium {
  background: linear-gradient(135deg, #ff1f8c 0%, #ec4899 50%, #6d44ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1em;
  position: relative;
  display: inline-block;
}

.tokprime-premium::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff1f8c, #ec4899, #6d44ff);
  border-radius: 2px;
  opacity: 0.6;
}

.tokprime-text-2 {
  display: block;
  color: #1f2937;
  font-weight: 700;
}

.tokprime-pro {
  background: linear-gradient(135deg, #6d44ff 0%, #ff1f8c 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.15em;
  position: relative;
  display: inline-block;
  animation: tokprimePulse 2s ease-in-out infinite;
}

.tokprime-deal {
  background: linear-gradient(135deg, #ec4899 0%, #ff1f8c 50%, #6d44ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.15em;
  position: relative;
  display: inline-block;
}
span.perc-bought {
  background-image: url(../images/perc.png);
  background-repeat: no-repeat;
  width: 464px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 39px;
 font-weight: 800;
  margin: -66px auto 0;
}
img.disc-1 {
  position: absolute;
  left: -10px;
  top: 90px;
}
img.disc-2 {
  position: absolute;
  right: -38px;
  top: 129px;
}
@keyframes tokprimePulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 31, 140, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 31, 140, 0.6));
  }
}

.tokprime-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  animation: tokprimeShine 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes tokprimeShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .tokprime-wrapper {
    margin: 50px auto -40px;
    padding: 30px 25px;
    border-radius: 25px;
  }
  
  .tokprime {
    font-size: clamp(20px, 5vw, 28px);
    gap: 10px;
  }
  
  .tokprime-icon {
    font-size: 24px;
  }
  
  .tokprime-icon-2,
  .tokprime-icon-4 {
    font-size: 28px;
  }
  
  .tokprime-icon-5 {
    font-size: 20px;
  }
  
  .tokprime-premium,
  .tokprime-pro,
  .tokprime-deal {
    font-size: 1.05em;
  }
}

@media (max-width: 480px) {
  .tokprime-wrapper {
    padding: 25px 20px;
    margin: 40px auto -40px;
  }
  
  .tokprime {
    font-size: clamp(18px, 6vw, 24px);
  }
  
  .tokprime-icon {
    font-size: 20px;
    opacity: 0.4;
  }
}

h6.unlimited-heading {
  font-size: 22px;
  text-align: center;
  margin-bottom: 40px;
}
h3.get-ai {
  text-align: center;
  font-size: 40px;
  margin-bottom: 18px;
  font-weight: 700;
}
.oto-sec-pro-right ul li img {
  position: absolute;
  left: 12px;
  top: 18px;
  max-width: 32px;
  filter: drop-shadow(0 2px 4px rgba(254, 195, 1, 0.4));
  transition: all 0.3s ease;
}
.oto-sec-pro-right ul li:hover img {
  transform: scale(1.15) rotate(5deg);
}
.oto-sec-pro-text {
  padding: 35px 50px 0;
  position: relative;
  z-index: 1;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

@keyframes dxCapsuleSweep {
        0% {
            transform: translateX(-140%) skewX(-18deg);
            opacity: 0;
        }

        20% {
            opacity: 0.85;
        }

        55% {
            transform: translateX(160%) skewX(-18deg);
            opacity: 0.9;
        }

        100% {
            transform: translateX(200%) skewX(-18deg);
            opacity: 0;
        }
    }

    @keyframes animate1 {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

@keyframes animate2 {
  0% {
    top: -100%;
  }
  50%,
  100% {
    top: 100%;
  }
}
@keyframes animate3 {
  0% {
    right: -100%;
  }
  50%,
  100% {
    right: 100%;
  }
}
@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%,
  100% {
    bottom: 100%;
  }
}
   
    :root {
      /* Global palette */
      --pink-main: #ff1f8c;
      --pink-soft: #ff7ac4;
      --pink-neon: #ff4fb3;
      --green-main: #10b981;
      --green-neon: #22c55e;
      --blue-main: #2563eb;
      --blue-accent: #2563eb;
      --orange-main: #ff8a3c;
      --purple-main: #7b61ff;
      --highlight-yellow: #fff64b;
      --text-main: #111827;
      --soft-border: #e5e7eb;
      --red-main: #ef4444;
      --insta: #a855f7;
      --youtube: #ef4444;
      --facebook: #2563eb;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Nunito", sans-serif;
      background: #ffffff;
      color: var(--text-main);
      overflow-x: hidden;
    }

    /* ================== HEADER NAVIGATION ================== */
    .main-header {
      background: #ffffff;
      border-bottom: 1px solid #e5e7eb;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .main-header .navbar {
      padding: 12px 0;
    }

    .main-header .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-weight: 600;
    }

    .main-header .logo-box {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: var(--blue-main);
      color: #ffffff;
      font-weight: 700;
      font-size: 18px;
      border-radius: 6px;
      border: 2px solid #ffffff;
      box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
    }

    .main-header .logo-text {
      color: var(--text-main);
      font-size: 18px;
      font-weight: 600;
    }

    .main-header .nav-link {
      color: #4b5563;
      font-weight: 500;
      font-size: 15px;
      padding: 8px 16px !important;
      transition: color 0.2s ease;
    }

    .main-header .nav-link:hover {
      color: var(--text-main);
    }

    .main-header .btn-affiliate {
      background: linear-gradient(90deg, #3b82f6, #7b61ff);
      color: #ffffff;
      font-weight: 600;
      font-size: 14px;
      padding: 10px 24px;
      border-radius: 8px;
      border: none;
      text-decoration: none;
      display: inline-block;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      margin-left: 8px;
    }

    .main-header .btn-affiliate:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
      color: #ffffff;
    }

    .main-header .navbar-toggler {
      border: 1px solid #e5e7eb;
      padding: 6px 12px;
    }

    .main-header .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    @media (max-width: 991px) {
      .main-header .navbar-collapse {
        margin-top: 0px;
        padding-top: 16px;
        border-top: 1px solid #e5e7eb;
      }

      .main-header .nav-link {
        padding: 10px 0 !important;
      }

      .main-header .btn-affiliate {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        text-align: center;
      }
    }

    /* ================== SECTION 1: HERO ================== */

    .hero-wrap {
      text-align: center;
    }

    .hero-wrap .container {
      position: relative;
      z-index: 10;
    }

.hero-pre {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 47px;
    position: relative;
    z-index: 9;
    padding: 14px 28px;
    display: inline-block;
    border-radius: 50px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 255, 252, 0.95) 100%),
        radial-gradient(circle at top left, rgba(0, 173, 79, 0.1) 0%, transparent 70%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 12px 40px rgba(0, 173, 79, 0.3),
        0 0 0 3px rgba(0, 173, 79, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateZ(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(5, 150, 105, 0.2);
}

.hero-pre:hover {
    transform: translateZ(30px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 173, 79, 0.3), 
                0 0 0 2px rgba(0, 173, 79, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

    .hero-heading,
    .hero-sub {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.3;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
      position: relative;
      z-index: 9;
      color: #1a1a2e;
      text-shadow: 
        0 4px 12px rgba(255, 255, 255, 0.95),
        0 2px 6px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(255, 255, 255, 0.5);
      transform: translateZ(15px);
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    }

    .hero-heading:not(.m-0) {
      color: #2d2d44;
      font-weight: 700;
    }

    .hero-heading:not(.m-0) span:not(.pink):not(.gradient-text-3) {
      color: #1a1a2e;
      font-weight: 700;
    }

    .hero-heading .pink,
    .hero-sub .pink {
      color: var(--pink-main, #ff1f8c);
    }

    .hero-sub {
      margin-bottom: 35px;
      font-size: clamp(24px, 3vw, 36px);
      color: #2d2d44;
      text-shadow: 0 2px 6px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.08);
    }

 .hero-body {
    font-size: 26px;
    line-height: 1.7;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-align: center;
    position: relative;
    z-index: 2;
    transform: translateZ(10px);
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.15),
        0 0 15px rgba(255, 255, 255, 0.3);
}

    p.hero-body span {
    background: linear-gradient(90deg, #f97316, #fb7185, #a855f7, #0ea5e9, #22c55e);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    animation: gradientTextFlow 4s ease infinite;
}

.hero-cta {
    display: inline-block;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #dc2626 0%, #ec4899 30%, #a855f7 60%, #3b82f6 90%, #06b6d4 100%);
    background-size: 200% 200%;
    animation: gradientTextFlow 5s ease infinite;
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 32px rgba(236, 72, 153, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15),
        0 0 30px rgba(236, 72, 153, 0.4);
    transform: translateZ(25px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta:hover {
    transform: translateZ(20px) scale(1.05);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.5),
                0 0 0 2px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
    /* ================== SECTION 2: VIDEO + MAIN CTA BUTTON ================== */

    .section-wrap {
      /* max-width: 1120px; */
      margin: 0 auto 20px;
      padding: 0 18px;
      text-align: center;
    }

    .video-shell {
    max-width: 100%;
    margin: 40px auto 10px;
    border-radius: 18px;

    display: flex;
    align-items: stretch;
    background: #ffffff;
    overflow: hidden;
    min-height: 300px;
    column-gap: 10px;
}

  .video-shell-left {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px solid #ff1f8c;
    border-radius: 22px;
}

  .jv-video-text {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111827;
    text-align: center;
  }

  .video-shell-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    background: #ffffff;
  }

  .contact-heading {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.4;
  }

  .contact-box {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gradient-start, #6264a7), var(--gradient-end, #7b61ff));
  }

  .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.95;
    transition: opacity 0.3s ease;
  }

  .contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
  }

  .contact-item:hover .contact-text,
  .contact-item:hover .contact-icon {
    color: #ffffff;
  }

  .contact-item:hover .contact-icon svg {
    fill: #ffffff;
  }

  .contact-item:hover::before {
    opacity: 1;
  }

  .contact-icon {
    font-size: 24px;
    line-height: 1;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  .contact-text {
    z-index: 1;
    position: relative;
    flex: 1;
  }

  .contact-teams {
    background: linear-gradient(135deg, #6264a7 0%, #7b61ff 50%, #a855f7 100%);
  }

  .contact-teams::before {
    background: linear-gradient(135deg, #7b61ff, #a855f7);
  }

  .contact-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 50%, #2563eb 100%);
  }

  .contact-facebook::before {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
  }

  .contact-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #22c55e 50%, #10b981 100%);
  }

  .contact-whatsapp::before {
    background: linear-gradient(135deg, #22c55e, #10b981);
  }

  .contact-email {
    background: linear-gradient(135deg, #ff1f8c 0%, #ec4899 50%, #f472b6 100%);
  }

  .contact-email::before {
    background: linear-gradient(135deg, #ec4899, #f472b6);
  }

    .video-label {
      font-size: 40px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .cta-button-wrap {
      margin-top: 10px;
      margin-bottom: 14px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 20px 40px;
          border-radius: 14px;
      border: none;
      cursor: pointer;
      font-size: 34px;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: 0.03em;
      white-space: normal;
      text-align: center;
      background-image: linear-gradient(90deg, var(--orange-main), var(--pink-main), var(--purple-main));
      box-shadow: 0 18px 40px rgba(255, 105, 180, 0.55);
      transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    }

    .cta-button span.arrows {
      margin-left: 14px;
      font-size: 30px;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      filter: brightness(1.04);
      box-shadow: 0 22px 60px rgba(255, 105, 180, 0.75);
    }

    .cta-button:active {
      transform: translateY(1px);
      box-shadow: 0 12px 30px rgba(255, 105, 180, 0.5);
    }

   .cta-subline {
    margin-top: 19px;
    font-size: 21px;
    font-weight: 500;
    color: #fff;
}
.benefits span {
    color: #fff;
}
    .payment-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      margin-top: 18px;
      margin-bottom: 17px;
      flex-wrap: wrap;
    }

    .pay-badge {
      min-width: 80px;
      padding: 6px 12px;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 600;
      background: #f3f4f6;
      border: 1px solid #e5e7eb;
    }

    .guarantee-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: #fff7e0;
      border: 1px solid #fbbf24;
      font-size: 13px;
      font-weight: 600;
      color: #92400e;
    }

    .guarantee-badge span.icon {
      font-size: 18px;
    }

    .benefits {
      font-size: 28px;
      font-weight: 600;
      line-height: 1.6;
      margin-top: 12px;
    }
.benefits span:last-child {
    font-size: 24px;
}
    .benefits span {
      display: block;
    }

    /* ================== SECTION 3: PARTICLES + FEATURES GRID ================== */

    .particles{
      position:fixed;
      inset:0;
      z-index:0;
      pointer-events:none;
    }
    .particles span{
      position:absolute;
      width:14px;height:14px;
      border-radius:50%;
      background:linear-gradient(45deg,#ff1f8c,#facc15,#7a3cff);
      opacity:.15;
      animation:float 14s infinite linear;
    }
    @keyframes float{
      0%{transform:translateY(0) translateX(0)}
      50%{transform:translateY(-120px) translateX(40px)}
      100%{transform:translateY(0) translateX(0)}
    }

    .features-wrap{
      position:relative;
      z-index:1;
      max-width:1180px;
      margin:30px auto;
      padding:30px 18px 40px;
    }

 .features-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--pink-main);
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(30px);
    transition: .8s ease;
    border-top: 3px solid;
    border-bottom: 3px solid;
    padding: 18px 0;
}
    .features-heading.show{opacity:1;transform:none;}

    .features-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:26px;
    }

    .feature-card{
      position:relative;
      border-radius:22px;
      padding:22px 22px 26px;
      font-size:15px;
      line-height:1.7;
      color:#111827;
      background-size:140% 140%;
      background-position:0% 0%;
      box-shadow:0 18px 55px rgba(0, 0, 0, 0.15);
      border:1px solid rgba(255,255,255,.7);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      overflow:hidden;
      opacity:0;
      transform:translateY(40px);
      transition:
        box-shadow .35s ease,
        background-position .9s ease,
        opacity .6s ease,
        transform .6s ease;
    }

    .feature-card.show{
      opacity:1;
      transform:none;
    }

    .feature-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      border-radius:24px;
      background:linear-gradient(120deg,#ff1f8c,#facc15,#7a3cff);
      opacity:0;
      z-index:-1;
      filter:blur(16px);
      transition:.35s ease;
      animation:glowShift 5s linear infinite;
    }
    .feature-card:hover::before{opacity:.9;}

    @keyframes glowShift{
      0%{background-position:0% 50%}
      50%{background-position:100% 50%}
      100%{background-position:0% 50%}
    }

    .feature-card:hover{
      box-shadow:0 32px 90px rgba(0,0,0,0.28);
      background-position:100% 100%;
    }
    .down-arrow {
      position: relative;
      z-index: 1;
  }
    .feature-header{display:flex;align-items:center;gap:10px;margin-bottom:10px}
    .feature-icon{
      width:40px;height:40px;border-radius:18px;
      display:flex;align-items:center;justify-content:center;
      font-size:20px;color:#fff;

    }
    .feature-title{font-size:20px;font-weight:700}
    .feature-subtitle{font-size:15px;margin-bottom:10px;font-weight:500}
    .feature-list{padding-left:18px}
    .feature-list li{font-size:15px;margin-bottom:6px}

    .feature-card:nth-child(1){background:linear-gradient(180deg,#eafff8,#b1f8e0);}
    .feature-card:nth-child(2){background:linear-gradient(180deg,#ffe5f6,#f36cbd);}
    .feature-card:nth-child(3){background:linear-gradient(180deg,#ffe9d7,#ffb894);}
    .feature-card:nth-child(4){background:linear-gradient(180deg,#fff0f5,#ff9fbf);}
    .feature-card:nth-child(5){background:linear-gradient(180deg,#fff8dd,#ffe27a);}
    .feature-card:nth-child(6){background:linear-gradient(180deg,#e0fff6,#17a18f);}
    .feature-card:nth-child(7){background:linear-gradient(180deg,#eceeff,#9ea3ff);}
    .feature-card:nth-child(8){background:linear-gradient(180deg,#ffecec,#ff9a9a);}
    .feature-card:nth-child(9){background:linear-gradient(180deg,#fff2e4,#ffb27c);}
    .feature-card:nth-child(10){background:linear-gradient(180deg,#f1f9ff,#d3f0fc);}

    /* ================== SECTION 4: BOTTOM CTA FROM HERO ================== */

    .cta-wrapper {

      text-align: center;
    }

    .cta-button-outer {
      display: inline-block;
      position: relative;
      padding-bottom: 10px;
      margin-bottom: 12px;
    }

    .cta-button-main {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 26px 60px;
      border-radius: 28px;
      font-size: 34px;
      font-weight: 800;
      letter-spacing: 0.03em;
      color: #ffffff;
      text-decoration: none;
      background: linear-gradient(90deg, #ff7a3c, #ff4f7b, #7b3bf3);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
      white-space: nowrap;
      overflow: hidden;
    }

    .cta-button-main span.chevron {
      margin-left: 16px;
      font-size: 36px;
    }



    .cta-button-main:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
      filter: brightness(1.05);
      color: #fff;
    }

    .cta-subline-bottom {
    font-size: 21px;
    margin-bottom: 26px;
    color: #fff;
}
    .cta-subline-bottom span {
      margin: 0 4px;
    }

  .cta-payment-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

    .pay-pill {
      min-width: 110px;
      padding: 10px 16px;
      border-radius: 10px;
      border: 1px solid #d4d4d8;
      background: #ffffff;
      box-shadow: 0 7px 18px rgba(15, 23, 42, 0.08);
      font-weight: 600;
      font-size: 15px;
    }

    .pay-pill.blue { color: #2563eb; }
    .pay-pill.red  { color: #dc2626; }
    .pay-pill.gold { color: #b45309; }

    .guarantee-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid #facc15;
      background: #fffbeb;
      box-shadow: 0 7px 18px rgba(251, 191, 36, 0.25);
      font-size: 15px;
      font-weight: 700;
      color: #92400e;
    }

    .guarantee-pill span.badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #facc15;
      color: #1f2937;
      font-size: 18px;
    }

    .cta-bottom-heading {
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

   .cta-bottom-sub {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

    /* ================== SECTION 5: WHY TIKTOK (TRUMP) ================== */

   .why-wrap {
    margin: 0px auto;
    padding: 70px 0px;
    background: #fff2db;
}

    .why-heading {
      text-align: center;
      margin-bottom: 40px;
    }

  .why-heading h2 {
    font-size: 52px;
    font-weight: 800;
    color: #ffa300;
    margin-bottom: 12px;
}

   .why-heading p {
    font-size: 26px;
    line-height: 1.35;
    font-weight: 600;
    color: #ffa300;
}

    .why-heading p em {
      font-style: italic;
    }

  .why-grid {
    display: flex;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

  .why-card {
    border-radius: 10px;
    border: 2px solid #ffa300;
    padding: 30px 32px;
    font-size: 17px;
    line-height: 1.8;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

    .why-card p + p {
      margin-top: 14px;
    }

    .why-card .pink {
      color: var(--pink-main);
      font-weight: 700;
    }

.why-card .blue {
    color: #ffa300;
    font-weight: 700;
}

    .why-card em {
      font-style: italic;
    }

.why-image-wrap {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: transparent;
    flex-direction: column;
}
    .why-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ================== SECTION 6: TIKTOK = #1 ATTENTION ================== */

   .tiktok-attention {
    margin: 0 auto;
    padding: 70px 0;
    background: #fff;
}

  .tiktok-attention__headline {
    text-align: center;
    font-size: 39px;
    font-weight: 800;
    color: #000;
    letter-spacing: 0;
    line-height: 1.3;
    margin-bottom: 40px;
}

.tiktok-attention__story {
    font-size: 17px;
    line-height: 1.8;
    max-width: 980px;
    margin: 0 auto 32px;
    text-align: center;
    color: #00baff;
    font-weight: 600;
} 
.tiktok-attention__story p {
    margin-bottom: 0;
    margin-top: 3px !IMPORTANT;
}
    .tiktok-attention__story p + p {
      margin-top: 14px;
    }

.tiktok-attention__hook {
    display: table;
    max-width: 100%;
    margin: 23px auto 25px;
    font-size: 22px;
    font-weight: 700;
    color: var(--pink-main);
    position: relative;
    padding: 10px 18px;
    text-align: center;
    box-shadow: 0 0 10px 1px #ddd;
    border-radius: 10px;
}
    .tiktok-attention__hook::before {
      content: "";
      position: absolute;
      inset: 60% 4px -4px;
      background: linear-gradient(90deg, #fff1f8, #ffe9fb);
      border-radius: 10px;
      z-index: -1;
    }

    .tiktok-attention__comparison {
      max-width: 640px;
      margin: 0 auto 26px;
      font-size: 18px;
      line-height: 1.8;
    }

    .tiktok-attention__comparison ul {
      list-style: none;
      margin: 18px 0;
    }

  .tiktok-attention__comparison li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
    margin: 13px auto;
    display: table;
}

    .tiktok-attention__comparison li span.x {
    color: #ef4444;
    font-size: 20px;
    line-height: 1;
    padding: 0 11px;
}

    .tiktok-attention__comparison li span.instagram {
      color: var(--insta);
    }
    .tiktok-attention__comparison li span.youtube {
      color: var(--youtube);
    }
    .tiktok-attention__comparison li span.facebook {
      color: var(--facebook);
    }

.tiktok-attention__but {
    margin-top: 8px;
    font-weight: 500;
    text-align: center;
    font-size: 34px;
    color: #fff;
    margin: 0 auto;
    display: table;
    padding: 0 20px;
    background: #00baff;
    border-radius: 10px;
}

    .tiktok-attention__final {
      max-width: 980px;
      margin: 24px auto 0;
      text-align: center;
      font-size: 18px;
      line-height: 1.8;
      color: #4b5563;
    }

    .tiktok-attention__final span.pink {
      color: var(--pink-main);
      font-weight: 700;
    }

    /* ================== SECTION 7: PROOF WALL (10 FAMOUS EXAMPLES) ================== */

.proof-wrap.proof-wall {
    margin: 0px auto 0px;
    padding: 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Light Header Section with Theme Colors */
.proof-wrap.proof-wall .proof-header-section {
    background: linear-gradient(135deg, #fff2db 0%, #fff9f0 50%, #fff2db 100%);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.proof-wrap.proof-wall .proof-header-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.proof-wrap.proof-wall .proof-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 170, 18, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 31, 140, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.proof-wrap.proof-wall .proof-header-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffaa12 0%, #ff1f8c 50%, #ffaa12 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.proof-wrap.proof-wall .get-ai {
    color: #4b5563;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.proof-wrap.proof-wall .proof-heading {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.proof-wrap.proof-wall .proof-heading span {
    background: linear-gradient(135deg, #ff1f8c 0%, #ec4899 25%, #ffaa12 50%, #ff1f8c 75%, #ec4899 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    display: inline-block;
    letter-spacing: -0.5px;
    animation: gradientTextFlow 5s ease infinite;
    position: relative;
}

.proof-wrap.proof-wall .proof-heading span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ffaa12, #ff1f8c);
    border-radius: 2px;
}

@keyframes gradientTextFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.proof-wrap.proof-wall .unlimited-heading {
    color: #374151;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.proof-wrap.proof-wall .unlimited-heading u {
    background: linear-gradient(135deg, #ffaa12 0%, #ff1f8c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: 700;
}

/* Features Grid */
.proof-wrap.proof-wall .proof-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Feature Cards */
.proof-wrap.proof-wall .proof-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.proof-wrap.proof-wall .proof-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffaa12, #ff1f8c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.proof-wrap.proof-wall .proof-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #ffaa12;
}

.proof-wrap.proof-wall .proof-feature-card:hover::before {
    transform: scaleX(1);
}

/* Feature Icons */
.proof-wrap.proof-wall .feature-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.proof-wrap.proof-wall .proof-feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Feature Content */
.proof-wrap.proof-wall .feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.proof-wrap.proof-wall .proof-feature-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.4;
    margin-bottom: 4px;
}

.proof-wrap.proof-wall .proof-feature-desc {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.5;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .proof-wrap.proof-wall .proof-features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .proof-wrap.proof-wall .proof-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        padding: 40px 15px;
    }
    
    .proof-wrap.proof-wall .proof-heading span {
        font-size: 32px;
    }
    
    .proof-wrap.proof-wall .proof-header-section {
        padding: 50px 15px 40px;
    }
}

@media (max-width: 600px) {
    .proof-wrap.proof-wall .proof-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .proof-wrap.proof-wall .proof-heading span {
        font-size: 26px;
    }
    
    .proof-wrap.proof-wall .get-ai {
        font-size: 18px;
    }
    
    .proof-wrap.proof-wall .unlimited-heading {
        font-size: 16px;
    }
    
    .proof-wrap.proof-wall .proof-feature-card {
        padding: 24px 20px;
    }
    
    .proof-wrap.proof-wall .proof-feature-title {
        font-size: 16px;
    }
    
    .proof-wrap.proof-wall .proof-feature-desc {
        font-size: 13px;
    }
}

    /* ================== SECTION 8: LOGIC SECTION ================== */

.logic-wrap {
    max-width: 1100px;
    margin: 29px auto 0;
    padding: 40px 20px 50px;
    text-align: center;
    line-height: 1.8;
    border-radius: 24px;
    background: radial-gradient(circle at top, #ffe6f3 0%, #ffffff 42%, #ffffff 100%);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

    .logic-lead {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 22px;
    }

    .logic-lines {
      font-size: 17px;
    }

    .logic-lines p {
      margin-bottom: 4px;
    }

    .logic-lines p.block-gap {
      margin-top: 0px;
    }

    .logic-highlight {
      margin: 26px auto 22px;
      max-width: 720px;
      font-size: 18px;
      font-weight: 800;
      color: var(--pink-main);
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255, 24, 140, 0.06);
      box-shadow: 0 0 0 1px rgba(255, 24, 140, 0.2);
    }

    .logic-final {
      margin-top: 20px;
      font-size: 18px;
      font-weight: 600;
    }

    .logic-final span {
      color: var(--pink-main);
    }

    /* ================== SECTION 9: MANUAL VS TOKPRIMEAI TABLE ================== */
    .reality-wrap {
    max-width: 1150px;
    margin: 50px auto 0px;
    padding: 40px 22px 30px;
    text-align: center;
    position: relative;
    /* background: radial-gradient(circle at 0% 0%, rgba(255, 192, 203, 0.15), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(110, 231, 183, 0.12), transparent 55%); */
    border-radius: 32px;
}
  .reality-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

   .reality-sub {
    font-size: 17px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffff;
    margin-bottom: 26px;
}

    .reality-sub span.pain {
      color: var(--red-main);
      font-weight: 700;
    }
    .reality-sub span.gain {
      color: var(--green-main);
      font-weight: 700;
    }

    .reality-card-shell {
      position: relative;
      border-radius: 26px;
      padding: 1px;
      background: linear-gradient(135deg, #ff9ad5, #ffb347, #4ade80, #38bdf8);
      box-shadow:
        0 24px 80px rgba(248, 113, 113, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    }

    .reality-grid {
      border-radius: 24px;
      background: #ffffff;
      overflow: hidden;
    }

    .reality-header {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      font-size: 20px;
      font-weight: 700;
      text-align: left;
    }

    .reality-header-cell {
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }

    .reality-header-cell.left {
      background: linear-gradient(90deg, #ffe4e6, #ffe8f0);
      border-right: 1px solid var(--soft-border);
      color: #b91c1c;
    }

    .reality-header-cell.right {
      background: linear-gradient(90deg, #dcfce7, #e0fdf5);
      color: #065f46;
    }

    .reality-header-pill {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 2px 8px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: rgba(255, 255, 255, 0.85);
      color: #4b5563;
    }

    .reality-header-icon {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      background: #ffffff;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .reality-rows {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border-top: 1px solid var(--soft-border);
    }

    .reality-row {
      display: contents;
    }

    .reality-cell {
      padding: 12px 22px;
      font-size: 14px;
      text-align: left;
      line-height: 1.65;
      border-top: 1px solid #f3f4f6;
      position: relative;
      transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
    }

    .reality-cell.left {
      background: #fff9fb;
      border-right: 1px solid #f3f4f6;
      border-left: 3px solid rgba(248, 113, 113, 0.55);
    }

    .reality-cell.right {
      background: #f4fff8;
      border-left: 3px solid rgba(74, 222, 128, 0.55);
    }

    .reality-row:nth-child(2n) .reality-cell.left {
      background: #fff5f7;
    }
    .reality-row:nth-child(2n) .reality-cell.right {
      background: #ecfdf3;
    }

    .reality-cell span.pain {
      color: var(--red-main);
      font-weight: 600;
    }

    .reality-cell span.gain {
      color: var(--green-main);
      font-weight: 600;
    }

    .reality-row:hover .reality-cell.left {
      background: #ffe4ec;
      box-shadow: inset 4px 0 0 rgba(248, 113, 113, 0.8);
      transform: translateX(-2px);
    }
    .reality-row:hover .reality-cell.right {
      background: #dcfce7;
      box-shadow: inset 4px 0 0 rgba(34, 197, 94, 0.9);
      transform: translateX(2px);
    }

  .reality-bottomline {
    margin-top: 19px;
    font-size: 20px;
    color: #fff;
}

    .reality-bottomline span.label {
      color: var(--pink-neon);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-right: 4px;
    }

    .reality-bottomline span.strong {
      font-weight: 700;
    }

    /* ================== SECTION 10: REAL PROOF (TOKPRIMEAI ACCOUNTS) ================== */

    .proof-wrap.real-proof{
      max-width:1160px;
      margin:80px auto 0px;
      padding:0 18px 0px;
      text-align:center;
      position:relative;
    }

    .proof-wrap.real-proof::before{
      content:"";
      position:absolute;
      inset:-120px -140px auto;
      background:
        radial-gradient(circle at 10% 0%,rgba(255,192,203,.25),transparent 60%),
        radial-gradient(circle at 90% 20%,rgba(129,140,248,.18),transparent 60%);
      z-index:-1;
    }

    .proof-wrap.real-proof .proof-pre{
      font-size:16px;
      color:#6b7280;
      margin-bottom:6px;
    }

  .proof-wrap.real-proof .proof-main-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--pink-main);
    margin-bottom: 26px;
    box-shadow: 0 0 10px 1px #ddd;
    margin: 10px auto 40px;
    display: table;
    padding: 12px 20px;
    border-radius: 5px;
}

    .proof-wrap.real-proof .proof-main-title span{
      text-transform:uppercase;
      letter-spacing:.12em;
    }

    .proof-wrap.real-proof .proof-list{
      display:flex;
      flex-direction:column;
      gap:22px;
      margin-bottom:36px;
    }

    .proof-wrap.real-proof .proof-card{
      border-radius:24px;
      padding:16px 18px 18px;
      text-align:left;
      position:relative;
      overflow:hidden;
      background:linear-gradient(135deg,#fff0f6,#fef3c7);
      box-shadow:0 18px 50px rgba(248,113,113,.16);
      border:1px solid rgba(255,255,255,.9);
    }

    .proof-wrap.real-proof .proof-card:nth-child(2){
      background:linear-gradient(135deg,#e0f2fe,#fdf2ff);
      box-shadow:0 18px 50px rgba(96,165,250,.18);
    }
    .proof-wrap.real-proof .proof-card:nth-child(3){
      background:linear-gradient(135deg,#ecfdf5,#fef3c7);
      box-shadow:0 18px 50px rgba(52,211,153,.18);
    }
    .proof-wrap.real-proof .proof-card:nth-child(4){
      background:linear-gradient(135deg,#fef3c7,#fee2e2);
      box-shadow:0 18px 50px rgba(251,191,36,.2);
    }
    .proof-wrap.real-proof .proof-card:nth-child(5){
      background:linear-gradient(135deg,#eef2ff,#ffe4e6);
      box-shadow:0 18px 50px rgba(129,140,248,.2);
    }

    .proof-wrap.real-proof .proof-card::before{
      content:"";
      position:absolute;
      inset:-40%;
      background:radial-gradient(circle at 0 0,rgba(255,255,255,.9),transparent 60%);
      opacity:.35;
      pointer-events:none;
    }

    .proof-wrap.real-proof .proof-card-inner{
      position:relative;
      display:grid;
      grid-template-columns:auto minmax(0,1fr);
      column-gap:14px;
      row-gap:10px;
    }

    .proof-wrap.real-proof .proof-number{
      width:32px;
      height:32px;
      border-radius:999px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:700;
      font-size:16px;
      color:#fff;
      background:linear-gradient(135deg,var(--orange-main),var(--pink-main));
      box-shadow:0 8px 18px rgba(0,0,0,.18);
    }
.proof-wrap.real-proof .proof-headline {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
}

    .proof-wrap.real-proof .proof-highlight{
      color:var(--pink-main);
    }

  .proof-wrap.real-proof .proof-body {
    grid-column: 1 / -1;
    font-size: 13px;
    margin-top: 4px;
    color: #374151;
    display: none;
}

    .proof-wrap.real-proof .proof-grid-images{
      grid-column:1 / -1;
      display:grid;
      grid-template-columns:repeat(1,minmax(0,1fr));
      gap:12px;
      margin-top:12px;
    }

    .proof-wrap.real-proof .proof-img-shell{
      border-radius:18px;
      overflow:hidden;
      background:#000;
      position:relative;
      box-shadow:0 14px 30px rgba(15,23,42,.35);
      transform:translateY(0);
      transition:transform .2s ease,box-shadow .2s ease;
    }

    .proof-wrap.real-proof .proof-img-shell img{
      width:100%;
      display:block;
    }

    .proof-wrap.real-proof .proof-tag{
      position:absolute;
      left:12px;
      top:12px;
      padding:4px 10px;
      border-radius:999px;
      font-size:11px;
      font-weight:600;
      letter-spacing:.08em;
      text-transform:uppercase;
      color:#f9fafb;
      background:rgba(15,23,42,.62);
      backdrop-filter:blur(10px);
    }

    .proof-wrap.real-proof .proof-img-shell:hover{
      transform:translateY(-4px);
      box-shadow:0 20px 40px rgba(15,23,42,.6);
    }

    .proof-wrap.real-proof .proof-card:hover{
      transform:translateY(-3px);
      box-shadow:0 24px 70px rgba(248,113,113,.25);
    }

   .proof-wrap.real-proof .proof-bottom-line {
    margin-top: 25px;
    font-size: 16px;
    color: #404040;
    text-align: center;
}

    .proof-wrap.real-proof .proof-bottom-line span.strong{
      font-weight:700;
      color:var(--text-main);
    }

    .proof-wrap.real-proof .proof-trust{
      margin-top:24px;
      font-size:23px;
      font-weight:600;
    }

    .proof-wrap.real-proof .proof-trust span{
      color:var(--pink-main);
    }

 .proof-wrap.real-proof .proof-mini {
    margin-top: 10px;
    font-size: 17px;
    color: #4b5563;
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
}

    .proof-wrap.real-proof .proof-final{
      margin-top:18px;
      font-size:17px;
      color:#111827;
      font-weight:500;
    }

    .proof-wrap.real-proof .proof-final span{
      font-weight:700;
    }

    /* ================== SECTION 11: INTRO + DEMO VIDEO ================== */

    .demo-hero-wrap{
      max-width:1120px;
      margin:80px auto 40px;
      padding:0 18px 20px;
      text-align:center;
      position:relative;
    }

    .demo-hero-wrap::before{
      content:"";
      position:absolute;
      inset:-140px -220px auto;
      background:
        radial-gradient(circle at 10% 0%,rgba(255,192,203,.35),transparent 60%),
        radial-gradient(circle at 90% 10%,rgba(129,140,248,.25),transparent 60%);
      z-index:-1;
    }

.demo-intro-label {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #7549E1;
    margin-bottom: 4px;
}
.demo-product-name {
    font-size: 58px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: capitalize;
    color: var(--pink-main);
    margin-bottom: 14px;
    margin: 24px auto;
    display: table;
    box-shadow: 0 0 10px 1px #ddd;
    padding: 0 40px;
    border-radius: 10px;
}

   .demo-strapline {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--highlight-yellow);
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(250,204,21,.4);
    margin-bottom: 26px;
}

.demo-description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto 6px;
}

    .demo-description .pink{color:var(--pink-main);font-weight:600;}
    .demo-description .blue{color:var(--blue-accent);font-weight:600;}
.demo-description-small {
    font-size: 20px;
    line-height: 1.7;
    max-width: 980px;
    margin: 0 auto 26px;
}

    .demo-description-small .pink{color:var(--pink-main);font-weight:600;}

.demo-subline {
    font-size: 23px;
    font-weight: 700;
    color: var(--pink-main);
    margin-bottom: 18px;
    margin-top: 32px;
}

   .demo-watch-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    margin: 0 auto 20px;
    display: table;
    border: 1px solid var(--pink-main);
    color: var(--pink-main);
    padding: 10px 30px;
    border-radius: 14px;
}

    .demo-video-shell{
      max-width:880px;
      margin:0 auto 32px;
      position:relative;
      border-radius:24px;
      padding:4px;
      background:linear-gradient(135deg,#ff9ac6,#7c3aed);
      box-shadow:0 22px 60px rgba(0,0,0,.35);
    }

    .demo-video-inner{
      border-radius:20px;
      overflow:hidden;
      background:#050816;
      display:flex;
      align-items:center;
      justify-content:center;
      aspect-ratio:16 / 9;
      position:relative;
    }

    .demo-video-placeholder{
      font-size:22px;
      letter-spacing:.18em;
      text-transform:uppercase;
      color:#e5e7eb;
    }

    .demo-play-pill{
      position:absolute;
      bottom:18px;
      left:50%;
      transform:translateX(-50%);
      padding:7px 16px;
      border-radius:999px;
      font-size:12px;
      letter-spacing:.12em;
      text-transform:uppercase;
      background:rgba(15,23,42,.84);
      color:#f9fafb;
      display:flex;
      align-items:center;
      gap:8px;
      backdrop-filter:blur(10px);
    }
    .demo-play-pill span.icon{
      width:20px;height:20px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;justify-content:center;
      background:radial-gradient(circle at 30% 20%,#f9fafb,#e5e7eb);
      color:#f97316;
      font-size:11px;
    }

    .demo-cta-wrapper{
      margin-top:8px;
    }

    .demo-cta-button-outer{
      display:inline-block;
      position:relative;
      padding-bottom:10px;
      margin-bottom:26px;
    }

    .demo-cta-button{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:24px 56px;
      border-radius:28px;
      font-size:30px;
      font-weight:800;
      letter-spacing:.03em;
      color:#ffffff;
      background:linear-gradient(90deg,#ff7a3c,#ff1f8c,#7b61ff);
      box-shadow:0 20px 45px rgba(236,72,153,.65);
      border:none;
      cursor:pointer;
      white-space:nowrap;
      transition:transform .22s ease,box-shadow .22s ease,filter .22s ease;
    }

    .demo-cta-button span.chev{
      margin-left:16px;
      font-size:32px;
    }

    .demo-cta-button::after{
      content:"";
      position:absolute;
      inset:auto 0 -10px 0;
      height:11px;
      border-radius:0 0 28px 28px;
      background:#d75a3d;
      opacity:.92;
      z-index:-1;
    }

    .demo-cta-button:hover{
      transform:translateY(-4px) scale(1.02);
      box-shadow:0 28px 70px rgba(236,72,153,.8);
      filter:brightness(1.05);
    }

    .demo-cta-subline{
      font-size:16px;
      margin-bottom:20px;
    }

    .demo-cta-subline span{margin:0 4px;}

    .demo-payment-row{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      align-items:center;
      gap:18px;
      margin-bottom:26px;
    }

    .demo-bottom-benefits{
      font-size:18px;
      font-weight:600;
      line-height:1.6;
    }
    .demo-bottom-benefits span{
      display:block;
    }

.span-title1 {
  border-radius: 60px;
  background: #fff;
  display: inline-block;
  padding: 4px;
  position: relative;
  border: 0;
  background-clip: padding-box;
  color: #00d17e;
  margin-bottom: 0px;
}
    /* ================== RESPONSIVE ================== */

    @media (max-width: 992px) {
      .proof-wrap.proof-wall .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px){
      .demo-product-name{
        font-size:26px;
      }
      .demo-strapline{
        font-size:11px;
        padding:6px 14px;
      }
      .demo-video-shell{
        border-radius:20px;
      }
      .demo-cta-button{
        font-size:22px;
        padding:18px 26px;
        white-space:normal;
      }
      .demo-cta-button span.chev{
        font-size:26px;
      }
      .demo-bottom-benefits{
        font-size:16px;
      }

      .features-grid{
        grid-template-columns:1fr;
      }
    }

    @media (max-width: 768px) {
      .hero-wrap { 
        margin-top: 40px;
        padding: 60px 0 30px;
        min-height: 500px;
      }

      .hero-3d-bg {
        transform: perspective(800px) rotateX(3deg) scale(1.05);
      }

      .floating-icon {
        font-size: 32px;
        opacity: 0.5;
      }

      .hero-pre {
        font-size: 14px;
        padding: 10px 20px;
        margin-bottom: 20px;
      }

      .hero-body {
        font-size: 18px;
        padding: 20px 30px;
      }

      .grad-bk {
        padding: 20px 30px;
        margin: 0 auto 20px;
      }

      .hero-cta {
        font-size: 16px;
        padding: 10px 20px;
      }

      span.main-tok-ai {
        font-size: clamp(24px, 5vw, 32px);
        padding: 15px 25px;
        margin-bottom: 20px;
      }

      .dx-glow-separator {
        width: 200px;
        height: 4px;
        margin: 20px auto 30px;
      }

      .video-shell {
        border-radius: 14px;
        flex-direction: column;
        min-height: auto;
      }

      .video-shell-left {
        flex: 1;
        border-right: none;
        border-bottom: 2px solid #ff1f8c;
        padding: 30px 20px;
      }

      .jv-video-text {
        font-size: 42px;
      }

      .video-shell-right {
        flex: 1;
        padding: 25px 20px;
      }

      .contact-heading {
        font-size: 18px;
        margin-bottom: 16px;
      }

      .contact-item {
        font-size: 14px;
        padding: 14px 16px;
      }

      .contact-icon {
        font-size: 20px;
      }

      .video-label {
        font-size: 30px;
      }

      .cta-button {
        font-size: 22px;
        padding: 18px 26px;
      }

      .cta-button span.arrows {
        font-size: 26px;
      }

      .benefits {
        font-size: 15px;
      }

      .cta-button-main {
        font-size: 24px;
        padding: 20px 24px;
        white-space: normal;
      }

      .cta-button-main span.chevron {
        font-size: 28px;
      }

      .cta-subline-bottom {
        font-size: 18px;
      }

      .cta-bottom-heading {
        font-size: 22px;
      }

      .cta-bottom-sub {
        font-size: 18px;
      }

      .why-heading h2 {
        font-size: 26px;
      }

      .why-heading p {
        font-size: 20px;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .why-card {
        font-size: 16px;
        padding: 24px 22px;
      }

      .tiktok-attention {
        margin: 60px auto 80px;
      }

      .tiktok-attention__headline {
        font-size: 24px;
      }

      .tiktok-attention__story,
      .tiktok-attention__final,
      .tiktok-attention__comparison {
        font-size: 16px;
      }

      .tiktok-attention__hook {
        font-size: 18px;
        padding: 8px 12px;
      }

      .proof-wrap.proof-wall .proof-grid {
        grid-template-columns: 1fr;
      }

      .logic-wrap {
        margin: 60px 16px 70px;
        padding: 30px 18px 40px;
      }

      .logic-lead {
        font-size: 18px;
      }

      .logic-lines,
      .logic-highlight,
      .logic-final {
        font-size: 16px;
      }

      .reality-wrap {
        padding: 30px 16px 45px;
      }

      .reality-card-shell {
        box-shadow:
          0 16px 50px rgba(248, 113, 113, 0.25),
          0 0 0 1px rgba(255, 255, 255, 0.8);
      }

      .reality-header,
      .reality-rows {
        grid-template-columns: 1fr;
      }

      .reality-header-cell.left,
      .reality-cell.left {
        border-right: none;
      }

      .reality-cell {
        border-top: 1px solid #e5e7eb;
      }

      .reality-row:hover .reality-cell.left,
      .reality-row:hover .reality-cell.right {
        transform: translateX(0);
      }

      .proof-wrap.real-proof .proof-card-inner{
        grid-template-columns:minmax(0,1fr);
      }
      .proof-wrap.real-proof .proof-grid-images{
        grid-template-columns:1fr;
      }
      .proof-wrap.real-proof .proof-card{
        padding:14px 14px 16px;
      }
    }

    @media (max-width: 640px) {
      .proof-wrap.proof-wall .proof-name {
        font-size: 20px;
      }

      .proof-wrap.proof-wall .proof-subtitle {
        font-size: 14px;
      }

      .proof-wrap.proof-wall .proof-story {
        font-size: 13px;
      }
    }
   
   
  /* subtle float for right panel */
  .video-shell-right {
    position: relative;
    animation: floatRight 7s ease-in-out infinite;
    will-change: transform;
  }

  @keyframes floatRight {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  /* base animation + layout enhancements for contact buttons */
  .contact-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .contact-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 18px;
    text-decoration: none;
    color: #ffffff;
    overflow: hidden;
    cursor: pointer;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      opacity 0.25s ease,
      background 0.35s ease;
  }

  /* glowing gradient border / sheen */
  .contact-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.45), transparent 60%);
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
  }

  .contact-item:hover::before {
    opacity: 1;
    transform: translate3d(12px, -8px, 0);
  }

  .contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    flex-shrink: 0;
    transition:
      background 0.3s ease,
      color 0.3s ease,
      transform 0.25s ease;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    transition: transform 0.25s ease;
  }

  .contact-text {
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.3s ease, transform 0.25s ease;
  }

  /* shared hover effects */
  .contact-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.32);
    opacity: 1;
  }

  .contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
  }

  .contact-item:hover .contact-icon svg {
    transform: scale(1.12);
  }

  .contact-item:hover .contact-text {
    transform: translateX(2px);
  }

  /* INDIVIDUAL BUTTON COLORS & GRADIENT HOVERS
     (normal state kept close to your original colors) */

  .contact-teams {
    background: linear-gradient(120deg, #7c3aed, #a855f7);
  }
  .contact-teams:hover {
    background: linear-gradient(135deg, #6d28d9, #c084fc);
    box-shadow: 0 0 22px rgba(124, 58, 237, 0.7);
  }

  .contact-facebook {
    background: #1877f2;
  }
  .contact-facebook:hover {
    background: linear-gradient(135deg, #1559c4, #2d88ff);
    box-shadow: 0 0 22px rgba(24, 119, 242, 0.7);
  }

  .contact-whatsapp {
    background: #25d366;
  }
  .contact-whatsapp:hover {
    background: linear-gradient(135deg, #1ebe5d, #3cf27e);
    box-shadow: 0 0 22px rgba(37, 211, 102, 0.7);
  }

  .contact-email {
    background: linear-gradient(120deg, #ff4f9a, #ff6ac1);
  }
  .contact-email:hover {
    background: linear-gradient(135deg, #f43f87, #ff85cf);
    box-shadow: 0 0 22px rgba(255, 111, 167, 0.7);
  }

  /* Optional: make icons shift color slightly on hover */
  .contact-teams:hover .contact-icon,
  .contact-facebook:hover .contact-icon,
  .contact-whatsapp:hover .contact-icon,
  .contact-email:hover .contact-icon {
    color: #ffffff;
  }

  @media (max-width: 767px) {
    .video-shell-right {
      animation: none; /* disable float on very small screens if you want */
    }
  }
 
 
  :root{
    --pink-main:#ff1f8c;
    --highlight-yellow:#fff64b;
  }

  .tp-showcase{
    margin:40px auto 30px;
    padding:0 0px;
    text-align:center;
    position:relative;
  }

  .tp-showcase__inner{
    position:relative;
    z-index:1;
  }

  .tp-showcase__pre{
    font-size:15px;
    font-weight:600;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:8px;
  }

  .tp-showcase__title{
    font-size:clamp(26px,3vw,32px);
    line-height:1.35;
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:24px;
    color:#0f172a;
  }
  .tp-showcase__title span{
    color:var(--pink-main);
  }

  /* Collage frame */
   .tp-showcase__frame{
    position:relative;
    max-width:980px;
    margin:0 auto 30px;
    border-radius:28px;
    padding:15px;
    background:
      radial-gradient(circle at 0 0,#f97316,transparent 55%),
      radial-gradient(circle at 100% 0,#22c55e,transparent 50%),
      radial-gradient(circle at 50% 100%,#6366f1,transparent 55%);
    box-shadow:
      0 26px 80px rgba(15,23,42,.55),
      0 0 0 1px rgba(255,255,255,.4);
    overflow:hidden;
  }

  /* subtle animated outer glow */
  .tp-showcase__border{
    position:absolute;
    inset:-80%;
    background:conic-gradient(
      from 140deg,
      #f97316,
      #fb7185,
      #a855f7,
      #22c55e,
      #38bdf8,
      #f97316
    );
    opacity:.32;
    filter:blur(40px);
    animation:tp-orbit 12s linear infinite;
    pointer-events:none;
  }
  @keyframes tp-orbit{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
  }

  /* collage image background */
  .tp-showcase__image{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    aspect-ratio:16 / 7;
  }



  .tp-showcase__badge-top{
    font-size:10px;
    letter-spacing:.18em;
    text-transform:uppercase;
    opacity:.8;
  }
  .tp-showcase__badge-main{
    font-size:18px;
    font-weight:800;
    letter-spacing:.06em;
  }
  .tp-showcase__badge-main span{
    margin-left:4px;
    padding:1px 6px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--pink-main),var(--highlight-yellow));
    color:#111827;
    font-size:11px;
    font-weight:800;
  }
  .tp-showcase__badge-sub{
    font-size:11px;
    opacity:.9;
  }

  /* diagonal light sweep */
  .tp-showcase__shine{
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.55) 50%,rgba(255,255,255,0) 100%);
    transform:translateX(-120%);
    mix-blend-mode:screen;
    animation:tp-shine 7s ease-in-out infinite;
    pointer-events:none;
  }
  @keyframes tp-shine{
    0%{transform:translateX(-130%);}
    18%{transform:translateX(130%);}
    100%{transform:translateX(130%);}
  }

  /* Text below */
  .tp-showcase__bigline{
    max-width:980px;
    margin:6px auto 6px;
    font-size:16px;
    line-height:1.7;
    font-weight:600;
    color:#111827;
  }
  .tp-showcase__bigline span{
    color:var(--pink-main);
  }

  .tp-showcase__smallline{
    font-size:19px;
    color:#6b7280;
    line-height:1.7;
  }
  .tp-showcase__smallline span{
    font-weight:700;
    color:#111827;
  }

  /* responsive tweaks */
  @media (max-width:768px){
    .tp-showcase__frame{
      border-radius:22px;
      padding:4px;
    }
    .tp-showcase__image{
      aspect-ratio:16 / 9;
    }
    .tp-showcase__badge{
      inset:auto 50% 12px;
      padding:8px 14px 9px;
    }
    .tp-showcase__badge-main{
      font-size:15px;
    }
    .tp-showcase__bigline{
      font-size:15px;
    }
  }
  @media (max-width:480px){
    .tp-showcase{
      margin-top:30px;
    }
    .tp-showcase__title{
      font-size:22px;
    }
    .tp-showcase__badge-sub{
      display:none;
    }
  }
 
 
  :root{
    --pink-main:#ff1f8c;
    --highlight-yellow:#fff64b;
  }

  .tp-showcase{
    margin:40px auto 30px;
    padding:0 0px;
    text-align:center;
    position:relative;
  }

  .tp-showcase__inner{
    position:relative;
    z-index:1;
  }

  .tp-showcase__pre{
    font-size:15px;
    font-weight:600;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:8px;
  }

  .tp-showcase__title{
    font-size:clamp(26px,3vw,32px);
    line-height:1.35;
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:24px;
    color:#0f172a;
  }
  .tp-showcase__title span{
    color:var(--pink-main);
  }

  /* Collage frame */
   .tp-showcase__frame{
    position:relative;
    max-width:980px;
    margin:0 auto 30px;
    border-radius:28px;
    padding:15px;
    background:
      radial-gradient(circle at 0 0,#f97316,transparent 55%),
      radial-gradient(circle at 100% 0,#22c55e,transparent 50%),
      radial-gradient(circle at 50% 100%,#6366f1,transparent 55%);
    box-shadow:
      0 26px 80px rgba(15,23,42,.55),
      0 0 0 1px rgba(255,255,255,.4);
    overflow:hidden;
  }

  /* subtle animated outer glow */
  .tp-showcase__border{
    position:absolute;
    inset:-80%;
    background:conic-gradient(
      from 140deg,
      #f97316,
      #fb7185,
      #a855f7,
      #22c55e,
      #38bdf8,
      #f97316
    );
    opacity:.32;
    filter:blur(40px);
    animation:tp-orbit 12s linear infinite;
    pointer-events:none;
  }
  @keyframes tp-orbit{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
  }

  /* collage image background */
  .tp-showcase__image{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    aspect-ratio:16 / 7;
  }

  /* center badge */
  .tp-showcase__badge{
    position:relative;
    inset:auto 50% 0px;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:2px;
    padding:10px 20px 11px;
    border-radius:999px;
    background:rgba(0,0,0,.84);
    color:#f9fafb;
    backdrop-filter:blur(14px);
    box-shadow:
      0 18px 45px rgba(0,0,0,.8),
      0 0 0 1px rgba(148,163,184,.5);
  }

  .tp-showcase__badge-top{
    font-size:10px;
    letter-spacing:.18em;
    text-transform:uppercase;
    opacity:.8;
  }
  .tp-showcase__badge-main{
    font-size:18px;
    font-weight:800;
    letter-spacing:.06em;
  }
  .tp-showcase__badge-main span{
    margin-left:4px;
    padding:1px 6px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--pink-main),var(--highlight-yellow));
    color:#111827;
    font-size:11px;
    font-weight:800;
  }
  .tp-showcase__badge-sub{
    font-size:11px;
    opacity:.9;
  }

  /* diagonal light sweep */
  .tp-showcase__shine{
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.55) 50%,rgba(255,255,255,0) 100%);
    transform:translateX(-120%);
    mix-blend-mode:screen;
    animation:tp-shine 7s ease-in-out infinite;
    pointer-events:none;
  }
  @keyframes tp-shine{
    0%{transform:translateX(-130%);}
    18%{transform:translateX(130%);}
    100%{transform:translateX(130%);}
  }

  /* Text below */
  .tp-showcase__bigline{
    max-width:980px;
    margin:6px auto 6px;
    font-size:16px;
    line-height:1.7;
    font-weight:600;
    color:#111827;
  }
  .tp-showcase__bigline span{
    color:var(--pink-main);
  }

  .tp-showcase__smallline{
    font-size:14px;
    color:#6b7280;
    line-height:1.7;
  }
  .tp-showcase__smallline span{
    font-weight:700;
    color:#111827;
  }

  /* responsive tweaks */
  @media (max-width:768px){
    .tp-showcase__frame{
      border-radius:22px;
      padding:4px;
    }
    .tp-showcase__image{
      aspect-ratio:16 / 9;
    }
    .tp-showcase__badge{
      inset:auto 50% 12px;
      padding:8px 14px 9px;
    }
    .tp-showcase__badge-main{
      font-size:15px;
    }
    .tp-showcase__bigline{
      font-size:15px;
    }
  }
  @media (max-width:480px){
    .tp-showcase{
      margin-top:30px;
    }
    .tp-showcase__title{
      font-size:22px;
    }
    .tp-showcase__badge-sub{
      display:none;
    }
  }
 

<!-- =============== MEGA FEATURES – AI VIDEO CREATION SUITE =============== -->
 
  :root{
    --mf-pink:#ff1f8c;
    --mf-blue:#2563eb;
    --mf-purple:#7b61ff;
    --mf-orange:#f97316;
    --mf-bg:#fdf2ff;
    --mf-text:#0f172a;
  }

  .mf-section{
    background:radial-gradient(circle at 0 0,#e0f2fe 0,#fdf2ff 40%,#fff 100%);
    padding:70px 20px 90px;
    font-family:"Nunito", sans-serif;
    color:var(--mf-text);
  }

  .mf-inner{
    max-width:1160px;
    margin:0 auto;
  }

.mf-eyebrow {
    text-align: center;
    font-size: 18px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mf-blue);
    font-weight: 700;
    margin-bottom: 10px;
    margin: 0 auto 22px;
    display: table;
    border: 1px solid;
    border-radius: 100px;
    padding: 10px 30px;
}

  .mf-heading{
    text-align:center;
    font-size:clamp(30px,3.3vw,40px);
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:6px;
  }
  .mf-heading span{
    color:var(--mf-pink);
  }

  .mf-subheading{
    text-align:center;
    font-size:clamp(22px,2.6vw,28px);
    font-weight:800;
    margin-bottom:12px;
  }
  .mf-subheading span{
    color:var(--mf-pink);
  }

.mf-tagline {
    text-align: center;
    font-size: 22px;
    font-style: italic;
    color: var(--mf-pink);
    margin-bottom: 32px;
    font-weight: 700;
}

  /* top tab row */
  .mf-tabs{
    display:flex;
    gap:14px;
    justify-content:space-between;
    flex-wrap:wrap;
    margin:0 auto 24px;
  }

  .mf-tab{
    flex:1 1 160px;
    min-width:140px;
    cursor:pointer;
    border-radius:16px;
    padding:10px 14px;
    border:1px solid rgba(148,163,184,.6);
    background:linear-gradient(135deg,#ffffff,#f5f5ff);
    box-shadow:0 10px 24px rgba(148,163,184,.25);
    display:flex;
    align-items:center;
    gap:10px;
    position:relative;
    overflow:hidden;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
  }
  .mf-tab::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#ffe4f3,#e0f2fe);
    opacity:0;
    transition:opacity .18s ease;
  }
  .mf-tab-inner{
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
  }
  .mf-tab-icon{
    width:30px;
    height:30px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    background:radial-gradient(circle at 30% 20%,#ffffff,#e5e7eb);
    box-shadow:0 6px 12px rgba(15,23,42,.25);
  }
  .mf-tab-title{
    font-size:14px;
    font-weight:700;
    line-height:1.3;
  }

  .mf-tab.active{
    border-color:transparent;
    background:linear-gradient(135deg,#ff9ecf,#a5b4fc);
    box-shadow:0 16px 34px rgba(236,72,153,.45);
    transform:translateY(-3px);
  }
  .mf-tab.active::before{
    opacity:.25;
  }

  /* content panel */
  .mf-panel-shell{
    margin-top:6px;
    border-radius:24px;
    padding:1px;
    background:linear-gradient(135deg,#ff9ecf,#a5b4fc,#4ade80);
    box-shadow:0 20px 60px rgba(148,163,184,.55);
  }
  .mf-panel{
    border-radius:22px;
    background:#ffffff;
    padding:24px 26px 26px;
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(0,1.1fr);
    gap:26px;
  }

  .mf-panel-copy-eyebrow{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:4px;
  }
  .mf-panel-title{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
  }
  .mf-panel-title span{
    color:var(--mf-pink);
  }
  .mf-panel-desc{
    font-size:15px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:10px;
  }
  .mf-panel-bullets{
    list-style:none;
    padding-left:0;
    font-size:14px;
    color:#111827;
  }
  .mf-panel-bullets li{
    display:flex;
    align-items:flex-start;
    gap:8px;
    margin-bottom:6px;
  }
  .mf-panel-bullets li span.dot{
    font-size:16px;
    line-height:1.2;
    color:var(--mf-pink);
  }

  /* demo side */
  .mf-demo-card{
    border-radius:18px;
    padding:14px 16px 18px;
    background:radial-gradient(circle at 0 0,#fee2e2,#e0f2fe);
    box-shadow:0 16px 40px rgba(15,23,42,.25);
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .mf-demo-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
  }
  .mf-demo-title{
    font-size:17px;
    font-weight:700;
    margin-bottom:2px;
  }
  .mf-demo-video{
    flex:1;
    border-radius:14px;
    border:1px dashed rgba(55,65,81,.35);
    background:#020617;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e5e7eb;
    font-size:13px;
    letter-spacing:.18em;
    text-transform:uppercase;
    position:relative;
    overflow:hidden;
  }
 .mf-demo-play {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(15,23,42,.8);
    color: #f9fafb;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}
  .mf-demo-play span.icon{
    width:18px;
    height:18px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle at 30% 20%,#fefce8,#fed7aa);
    color:#ea580c;
    font-size:10px;
  }

  /* fade animation when feature changes */
  .mf-panel,
  .mf-demo-card{
    transition:opacity .25s ease,transform .25s ease;
  }
  .mf-panel.is-switching,
  .mf-demo-card.is-switching{
    opacity:1;
    transform:translateY(6px);
  }

  /* responsive */
  @media (max-width:900px){
    .mf-panel{
      grid-template-columns:1fr;
      padding:20px 18px 22px;
    }
  }
  @media (max-width:640px){
    .mf-section{
      padding:60px 16px 70px;
    }
    .mf-tabs{
      flex-wrap:nowrap;
      overflow-x:auto;
      padding-bottom:4px;
      scrollbar-width:none;
    }
    .mf-tabs::-webkit-scrollbar{display:none;}
    .mf-tab{
      flex:0 0 70%;
    }
  }
 




<!-- =============== MEGA FEATURES – 2. AI IMAGE CREATION STUDIO =============== -->
 
  :root{
    --imgf-pink:#ff1f8c;
    --imgf-blue:#0ea5e9;
    --imgf-mint:#22c55e;
    --imgf-peach:#fb923c;
    --imgf-text:#0f172a;
  }

  .imgf-section{
    /* different vibe from previous section – mint / aqua / peach */
    background:
      radial-gradient(circle at 0 0,#e0f2fe 0,#ecfdf3 40%,transparent 65%),
      radial-gradient(circle at 100% 0,#fee2e2 0,#fff7ed 40%,transparent 70%),
      #f4fbff;
    padding:70px 20px 90px;
    font-family:"Nunito", sans-serif;
    color:var(--imgf-text);
  }

  .imgf-inner{
    max-width:1160px;
    margin:0 auto;
  }

  .imgf-heading{
    text-align:center;
    font-size:clamp(30px,3.3vw,40px);
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:10px;
  }
  .imgf-heading span{
    color:var(--imgf-pink);
  }

  .imgf-tagline{
    text-align:center;
    font-size:clamp(18px,2.2vw,22px);
    font-weight:700;
    color:var(--imgf-pink);
    margin-bottom:28px;
  }

  /* tabs row */
  .imgf-tabs{
    max-width:760px;
    margin:0 auto 24px;
    display:flex;
    gap:16px;
    justify-content:center;
    flex-wrap:wrap;
  }

  .imgf-tab{
    flex:1 1 220px;
    min-width:220px;
    cursor:pointer;
    border-radius:999px;
    padding:11px 18px;
    border:1px solid rgba(148,163,184,.7);
    background:linear-gradient(135deg,#ffffff,#f9fafb);
    box-shadow:0 10px 26px rgba(148,163,184,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    position:relative;
    overflow:hidden;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
    font-size:15px;
    font-weight:700;
  }
  .imgf-tab::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#a5f3fc,#bef264);
    opacity:0;
    transition:opacity .18s ease;
  }
  .imgf-tab span.label{
    position:relative;
  }
  .imgf-tab span.icon{
    position:relative;
    width:26px;
    height:26px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    background:radial-gradient(circle at 30% 20%,#ffffff,#e5e7eb);
    box-shadow:0 6px 12px rgba(15,23,42,.25);
  }

  .imgf-tab.active{
    border-color:transparent;
    background:linear-gradient(135deg,#0ea5e9,#22c55e);
    color:#f9fafb;
    box-shadow:0 16px 40px rgba(34,197,94,.55);
    transform:translateY(-3px);
  }
  .imgf-tab.active::before{
    opacity:.25;
  }

  /* panel shell */
  .imgf-panel-shell{
    margin:0 auto;
    border-radius:26px;
    padding:1px;
    background:linear-gradient(135deg,#0ea5e9,#22c55e,#fb923c);
    box-shadow:0 20px 60px rgba(15,23,42,.35);
  }

  .imgf-panel{
    border-radius:24px;
    background:#ffffff;
    padding:24px 26px 26px;
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(0,1.1fr);
    gap:26px;
  }

  .imgf-eyebrow{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:4px;
  }

  .imgf-title{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
  }
  .imgf-title span{
    color:var(--imgf-pink);
  }

  .imgf-desc{
    font-size:15px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:10px;
  }

  .imgf-bullets{
    list-style:none;
    padding-left:0;
    font-size:14px;
  }
  .imgf-bullets li{
    display:flex;
    gap:8px;
    align-items:flex-start;
    margin-bottom:6px;
  }
  .imgf-bullets li span.dot{
    font-size:16px;
    color:var(--imgf-pink);
  }

  /* demo card */
  .imgf-demo{
    border-radius:18px;
    padding:14px 16px 18px;
    background:radial-gradient(circle at 0 0,#e0f2fe,#fee2e2);
    box-shadow:0 16px 40px rgba(15,23,42,.28);
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .imgf-demo-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
  }

  .imgf-demo-title{
    font-size:16px;
    font-weight:700;
  }

  .imgf-demo-video{
    flex:1;
    border-radius:14px;
    border:1px dashed rgba(55,65,81,.4);
    background:#020617;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e5e7eb;
    font-size:13px;
    letter-spacing:.16em;
    text-transform:uppercase;
    position:relative;
    overflow:hidden;
  }
.imgf-demo-play {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(15,23,42,.86);
    color: #f9fafb;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}
  .imgf-demo-play span.icon{
    width:18px;
    height:18px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle at 30% 20%,#fefce8,#fed7aa);
    color:#ea580c;
    font-size:10px;
  }

  .imgf-panel,
  .imgf-demo{
    transition:opacity .25s ease,transform .25s ease;
  }
  .imgf-panel.is-switching,
  .imgf-demo.is-switching{
    opacity:1;
    transform:translateY(6px);
  }

  /* responsive */
  @media (max-width:900px){
    .imgf-panel{
      grid-template-columns:1fr;
      padding:20px 18px 22px;
    }
  }
  @media (max-width:640px){
    .imgf-section{
      padding:60px 16px 70px;
    }
    .imgf-tabs{
      max-width:none;
      overflow-x:auto;
      flex-wrap:nowrap;
      padding-bottom:4px;
      scrollbar-width:none;
    }
    .imgf-tabs::-webkit-scrollbar{display:none;}
    .imgf-tab{
      flex:0 0 80%;
    }
  }
 


 
  :root{
    --rmx-pink:#ff1f8c;
    --rmx-purple:#7c3aed;
    --rmx-orange:#fb923c;
    --rmx-blue:#0ea5e9;
    --rmx-text:#0f172a;
  }

  .rmx-section{
    background:
      radial-gradient(circle at 0% 0%, rgba(255, 31, 140, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 100% 0%, rgba(109, 68, 255, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 50% 100%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
      linear-gradient(135deg, #ffffff 0%, #f8f9ff 25%, #fff5f8 50%, #f0f4ff 75%, #ffffff 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 200% 200%;
    animation: gradientShift 20s ease infinite;
    padding:70px 20px 90px;
    font-family:"Nunito", sans-serif;
    color:var(--rmx-text);
    position: relative;
    overflow: hidden;
  }
  
  @keyframes gradientShift {
    0%, 100% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
    50% { background-position: 100% 100%, 100% 100%, 100% 100%, 100% 100%; }
  }

  .rmx-inner{
    max-width:1160px;
    margin:0 auto;
  }

  .rmx-heading {
    text-align: center;
    font-size: clamp(30px,3.3vw,40px);
    font-weight: 900;
    letter-spacing: .02em;
    margin-bottom: 26px;
    padding: 0 110px;
}
  .rmx-heading span{
    color:var(--rmx-pink);
  }

  .rmx-tagline{
    text-align:center;
    font-size:clamp(18px,2.2vw,22px);
    font-weight:700;
    color:var(--rmx-pink);
    margin-bottom:28px;
  }

  /* tabs container */
  .rmx-tabs{
    max-width:980px;
    margin:0 auto 24px;
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .rmx-tabs-row{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
  }

  .rmx-tabs-row--second{
    margin-top:4px;
  }

  .rmx-tab{
    flex:1 1 0;
    max-width:260px;
    cursor:pointer;
    border-radius:999px;
    padding:10px 18px;
    border:1px solid rgba(148,163,184,.7);
    background:linear-gradient(135deg,#ffffff,#f9fafb);
    box-shadow:0 10px 26px rgba(148,163,184,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    position:relative;
    overflow:hidden;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
    font-size:14px;
    font-weight:700;
    text-align:left;
    white-space:nowrap;
  }
  .rmx-tab::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#a5b4fc,#f472b6);
    opacity:0;
    transition:opacity .18s ease;
  }
  .rmx-tab span.label{
    position:relative;
  }
  .rmx-tab span.icon{
    position:relative;
    width:24px;
    height:24px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    background:radial-gradient(circle at 30% 20%,#ffffff,#e5e7eb);
    box-shadow:0 6px 12px rgba(15,23,42,.25);
    flex-shrink:0;
  }

  .rmx-tab.active{
    border-color:transparent;
    background:linear-gradient(135deg,#4f46e5,#ec4899);
    color:#f9fafb;
    box-shadow:0 16px 40px rgba(147,51,234,.55);
    transform:translateY(-3px);
  }
  .rmx-tab.active::before{
    opacity:.28;
  }

  /* panel shell */
  .rmx-panel-shell{
    margin:0 auto;
    border-radius:26px;
    padding:1px;
    background: linear-gradient(135deg, #4f46e5 0%, #ec4899 50%, #fb923c 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    box-shadow: 0 20px 60px rgba(15,23,42,.35),
                0 0 40px rgba(236, 72, 153, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .rmx-panel-shell:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(15,23,42,.4),
                0 0 50px rgba(236, 72, 153, 0.3);
  }
  
  @keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .rmx-panel{
    border-radius:24px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    padding:32px 30px 30px;
    display:flex;
    grid-template-columns:minmax(0,1.5fr) minmax(0,1.1fr);
    gap:32px;
    transition:opacity .25s ease,transform .25s ease, box-shadow .3s ease;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .rmx-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
  }
  
  .rmx-panel:hover::before {
    left: 100%;
  }
  .rmx-panel.is-switching{
    opacity:1;
    transform:translateY(6px);
  }

  .rmx-eyebrow{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:4px;
  }

  .tok-title {
    flex: 1;
    position: relative;
    z-index: 1;
  }
  
  .rmx-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ff1f8c 0%, #6d44ff 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: textGradient 5s ease infinite;
    line-height: 1.3;
  }
  
  .rmx-title-special {
    font-size: 30px;
  }
  
  .highlight-pink {
    background: linear-gradient(135deg, #ff1f8c 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
  }
  
  @keyframes textGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  .rmx-title span{
    color:var(--rmx-pink);
  }

  .rmx-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 10px;
  }
  
  .rmx-desc strong {
    color: #ff1f8c;
    font-weight: 700;
  }
  
  /* 3D Icon Styles */
  .rmx-icon-wrapper {
    margin-bottom: 16px;
    display: inline-block;
  }
  
  .rmx-3d-icon {
    font-size: 48px;
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    animation: float3dIcon 3s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(255, 31, 140, 0.1) 0%, rgba(109, 68, 255, 0.1) 100%);
    padding: 12px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    position: relative;
  }
  
  .rmx-3d-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #ff1f8c, #6d44ff, #ec4899);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
  }
  
  .rmx-panel:hover .rmx-3d-icon {
    transform: translateY(-5px) rotateY(10deg) scale(1.1);
    filter: drop-shadow(0 12px 24px rgba(255, 31, 140, 0.3));
  }
  
  @keyframes float3dIcon {
    0%, 100% {
      transform: translateY(0px) rotateY(0deg);
    }
    50% {
      transform: translateY(-8px) rotateY(5deg);
    }
  }

  .rmx-bullets{
    list-style:none;
    padding-left:0;
    font-size:14px;
  }
  .rmx-bullets li{
    display:flex;
    gap:8px;
    align-items:flex-start;
    margin-bottom:6px;
  }
  .rmx-bullets li span.dot{
    font-size:16px;
    color:var(--rmx-pink);
  }

  /* demo card */
  .rmx-demo{
    border-radius:20px;
    padding:16px 18px 20px;
    background: linear-gradient(135deg, #e0f2fe 0%, #fce7f3 50%, #e0f2fe 100%);
    background-size: 200% 200%;
    animation: demoGradient 6s ease infinite;
    box-shadow: 0 16px 40px rgba(15,23,42,.28),
                0 0 30px rgba(236, 72, 153, 0.15);
    display:flex;
    flex-direction:column;
    gap:10px;
    transition:opacity .25s ease,transform .25s ease, box-shadow .3s ease;
    width: 42%;
    position: relative;
    overflow: hidden;
  }
  
  .rmx-demo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
  }
  
  @keyframes demoGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  @keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
  }
  
  .rmx-panel:hover .rmx-demo {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(15,23,42,.35),
                0 0 40px rgba(236, 72, 153, 0.2);
  }
  .rmx-demo.is-switching{
    opacity:0;
    transform:translateY(6px);
  }

  .rmx-demo-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
  }

  .rmx-demo-title{
    font-size:16px;
    font-weight:700;
  }

  .rmx-demo-video{
    flex:1;
    border-radius:14px;
    border:1px dashed rgba(55,65,81,.4);
    background:#020617;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e5e7eb;
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    position:relative;
    text-align:center;
    padding:0 14px;
    line-height:1.4;
  }

  .rmx-demo-play{
    position:absolute;
    bottom:10px;
    left:10px;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(15,23,42,.86);
    color:#f9fafb;
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:6px;
  }
  .rmx-demo-play span.icon{
    width:18px;
    height:18px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle at 30% 20%,#fefce8,#fed7aa);
    color:#ea580c;
    font-size:10px;
  }

  @media (max-width:900px){
    .rmx-panel{
      grid-template-columns:1fr;
      padding:24px 20px 26px;
    }
    .rmx-3d-icon {
      font-size: 40px;
      padding: 10px;
    }
  }
  @media (max-width:640px){
    .rmx-section{
      padding:60px 16px 70px;
    }
    .rmx-tab{
      max-width:none;
      white-space:normal;
    }
    .rmx-demo-video{
      font-size:11px;
    }
    .rmx-title {
      font-size: 24px;
    }
    .rmx-title-special {
      font-size: 26px;
    }
    .rmx-3d-icon {
      font-size: 36px;
      padding: 8px;
    }
    .rmx-desc {
      font-size: 16px;
    }
  }
 
 
  :root{
    /* dedicated palette for section 4 */
    --disc4-pink:#ff2f92;
    --disc4-teal:#14b8a6;
    --disc4-blue:#2563eb;
    --disc4-yellow:#facc15;
    --disc4-text:#0f172a;
  }

  .disc4-section{
    padding:70px 20px 90px;
    font-family:"Nunito", sans-serif;
    color:var(--disc4-text);
    background:
      radial-gradient(circle at 0 0,#e0f2fe 0,#fef9c3 40%,transparent 70%),
      radial-gradient(circle at 100% 100%,#fce7f3 0,#e0f2fe 40%,transparent 70%),
      #f8fafc;
  }

  .disc4-inner{
    max-width:1160px;
    margin:0 auto;
  }

  .disc4-heading{
    text-align:center;
    font-size:clamp(30px,3.3vw,40px);
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:10px;
  }
  .disc4-heading span{
    color:var(--disc4-pink);
  }

  .disc4-tagline{
    text-align:center;
    font-size:clamp(18px,2.2vw,22px);
    font-weight:700;
    color:var(--disc4-pink);
    margin-bottom:26px;
  }

  /* TABS */
  .disc4-tabs{
    max-width:980px;
    margin:0 auto 24px;
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
  }

  .disc4-tab{
    flex:1 1 0;
    max-width:250px;
    border-radius:999px;
    padding:10px 18px;
    border:1px solid rgba(148,163,184,.7);
    background:linear-gradient(135deg,#ffffff,#f9fafb);
    box-shadow:0 10px 24px rgba(148,163,184,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    position:relative;
    overflow:hidden;
    white-space:nowrap;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
  }

  .disc4-tab::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#4ade80,#60a5fa);
    opacity:0;
    transition:opacity .18s ease;
  }

  .disc4-tab span.label{
    position:relative;
  }

  .disc4-tab span.icon{
    position:relative;
    width:24px;
    height:24px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    background:radial-gradient(circle at 30% 20%,#ffffff,#e5e7eb);
    box-shadow:0 6px 12px rgba(15,23,42,.25);
    flex-shrink:0;
  }

  .disc4-tab.active{
    border-color:transparent;
    background:linear-gradient(135deg,#22c55e,#0ea5e9);
    color:#f9fafb;
    box-shadow:0 16px 40px rgba(34,197,94,.55);
    transform:translateY(-3px);
  }
  .disc4-tab.active::before{
    opacity:.25;
  }

  /* PANEL */
  .disc4-panel-shell{
    margin:0 auto;
    border-radius:26px;
    padding:1px;
    background:linear-gradient(135deg,#22c55e,#0ea5e9,#f97316);
    box-shadow:0 20px 60px rgba(15,23,42,.35);
  }

  .disc4-panel{
    border-radius:24px;
    background:#ffffff;
    padding:24px 26px 26px;
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(0,1.1fr);
    gap:26px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .disc4-panel.disc4-switching{
    opacity:1;
    transform:translateY(6px);
  }

  .disc4-eyebrow{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:4px;
  }

  .disc4-title{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
  }
  .disc4-title span{
    color:var(--disc4-pink);
  }

  .disc4-desc{
    font-size:15px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:10px;
  }

  .disc4-bullets{
    list-style:none;
    padding-left:0;
    font-size:14px;
  }
  .disc4-bullets li{
    display:flex;
    gap:8px;
    align-items:flex-start;
    margin-bottom:6px;
  }
  .disc4-bullets li .dot{
    font-size:16px;
    color:var(--disc4-pink);
  }

  /* DEMO CARD */
  .disc4-demo{
    border-radius:18px;
    padding:14px 16px 18px;
    background:radial-gradient(circle at 0 0,#dbeafe,#fef3c7);
    box-shadow:0 16px 40px rgba(15,23,42,.28);
    display:flex;
    flex-direction:column;
    gap:10px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .disc4-demo.disc4-switching{
    opacity:0;
    transform:translateY(6px);
  }

  .disc4-demo-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
  }

  .disc4-demo-title{
    font-size:16px;
    font-weight:700;
  }

  .disc4-demo-video{
    flex:1;
    border-radius:14px;
    border:1px dashed rgba(55,65,81,.4);
    background:#020617;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e5e7eb;
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    position:relative;
    text-align:center;
    padding:0 14px;
    line-height:1.4;
  }

  .disc4-demo-play{
    position:absolute;
    bottom:10px;
    left:10px;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(15,23,42,.86);
    color:#f9fafb;
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:6px;
  }
  .disc4-demo-play span.icon{
    width:18px;
    height:18px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle at 30% 20%,#fefce8,#fed7aa);
    color:#ea580c;
    font-size:10px;
  }

  @media (max-width:900px){
    .disc4-panel{
      grid-template-columns:1fr;
      padding:20px 18px 22px;
    }
  }
  @media (max-width:640px){
    .disc4-section{
      padding:60px 16px 70px;
    }
    .disc4-tab{
      max-width:none;
      white-space:normal;
    }
    .disc4-demo-video{
      font-size:11px;
    }
  }
 
 
  :root{
    /* Dedicated palette for section 5 */
    --spy5-pink:#ff2f92;
    --spy5-purple:#7c3aed;
    --spy5-sky:#0ea5e9;
    --spy5-mint:#22c55e;
    --spy5-text:#020617;
  }

  .spy5-section{
    padding:70px 20px 90px;
    font-family:"Nunito", sans-serif;
    color:var(--spy5-text);
    background:
      radial-gradient(circle at 0 100%,rgba(129,140,248,.24),transparent 60%),
      radial-gradient(circle at 100% 0,rgba(45,212,191,.25),transparent 60%),
      linear-gradient(135deg,#fef3f2,#eef2ff);
  }

  .spy5-inner{
    max-width:1160px;
    margin:0 auto;
  }

  .spy5-heading{
    text-align:center;
    font-size:clamp(30px,3.3vw,40px);
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:10px;
  }
  .spy5-heading span{
    color:var(--spy5-pink);
  }

  .spy5-tagline{
    text-align:center;
    font-size:clamp(18px,2.2vw,22px);
    font-weight:700;
    color:var(--spy5-pink);
    margin-bottom:26px;
  }

  /* TABS */
  .spy5-tabs{
    max-width:1000px;
    margin:0 auto 24px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .spy5-tab{
    flex:1 1 0;
    max-width:260px;
    border-radius:999px;
    padding:10px 18px;
    border:1px solid rgba(148,163,184,.7);
    background:linear-gradient(135deg,#ffffff,#f9fafb);
    box-shadow:0 10px 24px rgba(148,163,184,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    position:relative;
    overflow:hidden;
    white-space:nowrap;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
  }

  .spy5-tab::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#22c55e,#0ea5e9);
    opacity:0;
    transition:opacity .18s ease;
  }

  .spy5-tab span.label{
    position:relative;
  }

  .spy5-tab span.icon{
    position:relative;
    width:24px;
    height:24px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    background:radial-gradient(circle at 30% 20%,#ffffff,#e5e7eb);
    box-shadow:0 6px 12px rgba(15,23,42,.25);
    flex-shrink:0;
  }

  .spy5-tab.active{
    border-color:transparent;
    background:linear-gradient(135deg,#22c55e,#0ea5e9,#7c3aed);
    color:#f9fafb;
    box-shadow:0 16px 40px rgba(76,81,191,.55);
    transform:translateY(-3px);
  }
  .spy5-tab.active::before{ opacity:.25; }

  /* PANEL */
  .spy5-panel-shell{
    margin:0 auto;
    border-radius:26px;
    padding:1px;
    background:linear-gradient(135deg,#22c55e,#0ea5e9,#f97316);
    box-shadow:0 20px 60px rgba(15,23,42,.35);
  }

  .spy5-panel{
    border-radius:24px;
    background:#ffffff;
    padding:24px 26px 26px;
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(0,1.1fr);
    gap:26px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .spy5-panel.spy5-switching{
    opacity:1;
    transform:translateY(6px);
  }

  .spy5-eyebrow{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:4px;
  }

  .spy5-title{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
  }
  .spy5-title span{
    color:var(--spy5-pink);
  }

  .spy5-desc{
    font-size:15px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:10px;
  }

  .spy5-bullets{
    list-style:none;
    padding-left:0;
    font-size:14px;
  }
  .spy5-bullets li{
    display:flex;
    gap:8px;
    align-items:flex-start;
    margin-bottom:6px;
  }
  .spy5-bullets li .dot{
    font-size:16px;
    color:var(--spy5-pink);
  }

  /* DEMO CARD */
  .spy5-demo{
    border-radius:18px;
    padding:14px 16px 18px;
    background:radial-gradient(circle at 0 0,#e0f2fe,#fef3c7);
    box-shadow:0 16px 40px rgba(15,23,42,.28);
    display:flex;
    flex-direction:column;
    gap:10px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .spy5-demo.spy5-switching{
    opacity:0;
    transform:translateY(6px);
  }

  .spy5-demo-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
  }

  .spy5-demo-title{
    font-size:16px;
    font-weight:700;
  }

  .spy5-demo-video{
    flex:1;
    border-radius:14px;
    border:1px dashed rgba(55,65,81,.4);
    background:#020617;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e5e7eb;
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    position:relative;
    text-align:center;
    padding:0 14px;
    line-height:1.4;
  }

  .spy5-demo-play{
    position:absolute;
    bottom:10px;
    left:10px;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(15,23,42,.86);
    color:#f9fafb;
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:6px;
  }
  .spy5-demo-play span.icon{
    width:18px;
    height:18px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle at 30% 20%,#fefce8,#fed7aa);
    color:#ea580c;
    font-size:10px;
  }

  @media (max-width:900px){
    .spy5-panel{
      grid-template-columns:1fr;
      padding:20px 18px 22px;
    }
  }

  @media (max-width:640px){
    .spy5-section{
      padding:60px 16px 70px;
    }
    .spy5-tab{
      max-width:none;
      white-space:normal;
    }
    .spy5-demo-video{
      font-size:11px;
    }
  }
 
 
  :root{
    /* Dedicated palette for section 6 */
    --cge6-pink:#ff3b9a;
    --cge6-orange:#fb923c;
    --cge6-blue:#6366f1;
    --cge6-teal:#14b8a6;
    --cge6-text:#020617;
  }

  .cge6-section{
    padding:70px 20px 90px;
    font-family:"Nunito", sans-serif;
    color:var(--cge6-text);
    background:
      radial-gradient(circle at 0 0,rgba(244,114,182,.25),transparent 55%),
      radial-gradient(circle at 100% 100%,rgba(56,189,248,.23),transparent 55%),
      linear-gradient(135deg,#fef9c3,#fef3f2);
  }

  .cge6-inner{
    max-width:1160px;
    margin:0 auto;
  }

  .cge6-heading{
    text-align:center;
    font-size:clamp(30px,3.3vw,40px);
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:10px;
  }
  .cge6-heading span{
    color:var(--cge6-pink);
  }

  .cge6-tagline{
    text-align:center;
    font-size:clamp(18px,2.2vw,22px);
    font-weight:700;
    color:var(--cge6-pink);
    margin-bottom:26px;
  }

  /* TABS */
  .cge6-tabs{
    max-width:900px;
    margin:0 auto 24px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .cge6-tab{
    flex:1 1 0;
    max-width:260px;
    border-radius:999px;
    padding:9px 18px;
    border:1px solid rgba(148,163,184,.75);
    background:linear-gradient(135deg,#ffffff,#f9fafb);
    box-shadow:0 10px 24px rgba(148,163,184,.26);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    position:relative;
    overflow:hidden;
    white-space:nowrap;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
  }

  .cge6-tab::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#f97316,#6366f1);
    opacity:0;
    transition:opacity .18s ease;
  }

  .cge6-tab span.label{
    position:relative;
  }

  .cge6-tab span.icon{
    position:relative;
    width:24px;
    height:24px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    background:radial-gradient(circle at 30% 20%,#ffffff,#e5e7eb);
    box-shadow:0 6px 12px rgba(15,23,42,.25);
    flex-shrink:0;
  }

  .cge6-tab.active{
    border-color:transparent;
    background:linear-gradient(135deg,#fb923c,#f97316,#6366f1);
    color:#f9fafb;
    box-shadow:0 16px 40px rgba(248,113,113,.58);
    transform:translateY(-3px);
  }
  .cge6-tab.active::before{ opacity:.25; }

  /* PANEL */
  .cge6-panel-shell{
    margin:0 auto;
    border-radius:26px;
    padding:1px;
    background:linear-gradient(135deg,#fb923c,#6366f1,#14b8a6);
    box-shadow:0 20px 60px rgba(15,23,42,.36);
  }

  .cge6-panel{
    border-radius:24px;
    background:#ffffff;
    padding:24px 26px 26px;
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(0,1.1fr);
    gap:26px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .cge6-panel.cge6-switching{
    opacity:1;
    transform:translateY(6px);
  }

  .cge6-eyebrow{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:4px;
  }

  .cge6-title{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
  }
  .cge6-title span{
    color:var(--cge6-pink);
  }

  .cge6-desc{
    font-size:15px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:10px;
  }

  .cge6-bullets{
    list-style:none;
    padding-left:0;
    font-size:14px;
  }
  .cge6-bullets li{
    display:flex;
    gap:8px;
    align-items:flex-start;
    margin-bottom:6px;
  }
  .cge6-bullets li .dot{
    font-size:16px;
    color:var(--cge6-pink);
  }

  /* DEMO CARD */
  .cge6-demo{
    border-radius:18px;
    padding:14px 16px 18px;
    background:radial-gradient(circle at 0 0,#e0f2fe,#fee2e2);
    box-shadow:0 16px 40px rgba(15,23,42,.28);
    display:flex;
    flex-direction:column;
    gap:10px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .cge6-demo.cge6-switching{
    opacity:0;
    transform:translateY(6px);
  }

  .cge6-demo-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
  }

  .cge6-demo-title{
    font-size:16px;
    font-weight:700;
  }

  .cge6-demo-video{
    flex:1;
    border-radius:14px;
    border:1px dashed rgba(55,65,81,.42);
    background:#020617;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e5e7eb;
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    position:relative;
    text-align:center;
    padding:0 14px;
    line-height:1.4;
  }

  .cge6-demo-play{
    position:absolute;
    bottom:10px;
    left:10px;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(15,23,42,.9);
    color:#f9fafb;
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:6px;
  }
  .cge6-demo-play span.icon{
    width:18px;
    height:18px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle at 30% 20%,#fefce8,#fed7aa);
    color:#ea580c;
    font-size:10px;
  }

  @media (max-width:900px){
    .cge6-panel{
      grid-template-columns:1fr;
      padding:20px 18px 22px;
    }
  }

  @media (max-width:640px){
    .cge6-section{
      padding:60px 16px 70px;
    }
    .cge6-tab{
      max-width:none;
      white-space:normal;
    }
    .cge6-demo-video{
      font-size:11px;
    }
  }
 
 
  :root{
    --agd7-pink:#ec4899;
    --agd7-indigo:#4f46e5;
    --agd7-sky:#0ea5e9;
    --agd7-text:#020617;
  }

  .agd7-section{
    padding:70px 20px 90px;
    font-family:"Nunito", sans-serif;
    color:var(--agd7-text);
    background:
      radial-gradient(circle at 15% 0,rgba(251,113,133,.3),transparent 55%),
      radial-gradient(circle at 100% 85%,rgba(56,189,248,.35),transparent 55%),
      linear-gradient(135deg,#eff6ff,#fdf2ff);
  }

  .agd7-inner{max-width:1160px;margin:0 auto;}

  .agd7-heading{
    text-align:center;
    font-size:clamp(30px,3.3vw,40px);
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:10px;
  }
  .agd7-heading span{color:var(--agd7-pink);}

  .agd7-tagline{
    text-align:center;
    font-size:clamp(18px,2.2vw,22px);
    font-weight:700;
    color:var(--agd7-pink);
    margin-bottom:26px;
  }

  /* TABS */
  .agd7-tabs{
    max-width:640px;
    margin:0 auto 24px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .agd7-tab{
    flex:1 1 0;
    min-width:190px;
    border-radius:999px;
    padding:9px 18px;
    border:1px solid rgba(148,163,184,.75);
    background:linear-gradient(135deg,#ffffff,#f9fafb);
    box-shadow:0 10px 24px rgba(148,163,184,.26);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    position:relative;
    overflow:hidden;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
    white-space:nowrap;
  }

  .agd7-tab span.label{position:relative;}
  .agd7-tab span.icon{
    position:relative;
    width:24px;height:24px;
    border-radius:999px;
    display:flex;align-items:center;justify-content:center;
    font-size:15px;
    background:radial-gradient(circle at 30% 20%,#ffffff,#e5e7eb);
    box-shadow:0 6px 12px rgba(15,23,42,.25);
    flex-shrink:0;
  }

  .agd7-tab.active{
    border-color:transparent;
    background:linear-gradient(135deg,#ec4899,#4f46e5);
    color:#f9fafb;
    box-shadow:0 16px 40px rgba(129,140,248,.6);
    transform:translateY(-3px);
  }

  /* PANEL */
  .agd7-panel-shell{
    margin:0 auto;
    border-radius:26px;
    padding:1px;
    background:linear-gradient(135deg,#ec4899,#4f46e5,#0ea5e9);
    box-shadow:0 20px 60px rgba(15,23,42,.36);
  }

  .agd7-panel{
    border-radius:24px;
    background:#ffffff;
    padding:24px 26px 26px;
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(0,1.1fr);
    gap:26px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .agd7-panel.agd7-switching{
    opacity:1;
    transform:translateY(6px);
  }

  .agd7-eyebrow{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:4px;
  }

  .agd7-title{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
  }
  .agd7-title span{color:var(--agd7-indigo);}

  .agd7-desc{
    font-size:15px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:10px;
  }

  .agd7-bullets{
    list-style:none;
    padding-left:0;
    font-size:14px;
  }
  .agd7-bullets li{
    display:flex;
    gap:8px;
    align-items:flex-start;
    margin-bottom:6px;
  }
  .agd7-bullets li .dot{
    font-size:16px;
    color:var(--agd7-pink);
  }

  /* DEMO */
  .agd7-demo{
    border-radius:18px;
    padding:14px 16px 18px;
    background:radial-gradient(circle at 0 0,#e0f2fe,#fce7f3);
    box-shadow:0 16px 40px rgba(15,23,42,.26);
    display:flex;
    flex-direction:column;
    gap:10px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .agd7-demo.agd7-switching{
    opacity:0;
    transform:translateY(6px);
  }

  .agd7-demo-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
  }

  .agd7-demo-title{
    font-size:16px;
    font-weight:700;
  }

  .agd7-demo-video{
    flex:1;
    border-radius:14px;
    border:1px dashed rgba(55,65,81,.42);
    background:#020617;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e5e7eb;
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    position:relative;
    text-align:center;
    padding:0 14px;
    line-height:1.4;
  }

  .agd7-demo-play{
    position:absolute;
    bottom:10px;
    left:10px;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(15,23,42,.9);
    color:#f9fafb;
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:6px;
  }
  .agd7-demo-play span.icon{
    width:18px;height:18px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;justify-content:center;
    background:radial-gradient(circle at 30% 20%,#fefce8,#bfdbfe);
    color:#4f46e5;
    font-size:10px;
  }

  @media (max-width:900px){
    .agd7-panel{
      grid-template-columns:1fr;
      padding:20px 18px 22px;
    }
  }
  @media (max-width:640px){
    .agd7-section{padding:60px 16px 70px;}
    .agd7-tab{white-space:normal;}
    .agd7-demo-video{font-size:11px;}
  }
 
 
  :root{
    --sa8-violet:#8b5cf6;
    --sa8-cyan:#06b6d4;
    --sa8-amber:#f59e0b;
    --sa8-text:#020617;
  }

  .sa8-section{
    padding:70px 20px 90px;
    font-family:"Nunito", sans-serif;
    color:var(--sa8-text);
    background:
      radial-gradient(circle at 10% 0,rgba(251,191,36,.35),transparent 55%),
      radial-gradient(circle at 100% 85%,rgba(59,130,246,.4),transparent 55%),
      linear-gradient(135deg,#eef2ff,#ecfeff);
  }

  .sa8-inner{max-width:1160px;margin:0 auto;}

  .sa8-heading{
    text-align:center;
    font-size:clamp(30px,3.3vw,40px);
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:10px;
  }
  .sa8-heading span{color:var(--sa8-amber);}

  .sa8-tagline{
    text-align:center;
    font-size:clamp(18px,2.2vw,22px);
    font-weight:700;
    color:var(--sa8-amber);
    margin-bottom:26px;
  }

  /* TABS */
  .sa8-tabs{
    max-width:800px;
    margin:0 auto 24px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .sa8-tab{
    flex:1 1 0;
    min-width:200px;
    border-radius:999px;
    padding:9px 18px;
    border:1px solid rgba(148,163,184,.75);
    background:linear-gradient(135deg,#ffffff,#f9fafb);
    box-shadow:0 10px 24px rgba(148,163,184,.26);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    position:relative;
    overflow:hidden;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
    white-space:nowrap;
  }

  .sa8-tab span.label{position:relative;}
  .sa8-tab span.icon{
    position:relative;
    width:24px;height:24px;
    border-radius:999px;
    display:flex;align-items:center;justify-content:center;
    font-size:15px;
    background:radial-gradient(circle at 30% 20%,#ffffff,#e5e7eb);
    box-shadow:0 6px 12px rgba(15,23,42,.25);
    flex-shrink:0;
  }

  .sa8-tab.active{
    border-color:transparent;
    background:linear-gradient(135deg,#8b5cf6,#06b6d4);
    color:#f9fafb;
    box-shadow:0 16px 40px rgba(59,130,246,.55);
    transform:translateY(-3px);
  }

  /* PANEL */
  .sa8-panel-shell{
    margin:0 auto;
    border-radius:26px;
    padding:1px;
    background:linear-gradient(135deg,#8b5cf6,#06b6d4,#f59e0b);
    box-shadow:0 20px 60px rgba(15,23,42,.36);
  }

  .sa8-panel{
    border-radius:24px;
    background:#ffffff;
    padding:24px 26px 26px;
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(0,1.1fr);
    gap:26px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .sa8-panel.sa8-switching{
    opacity:1;
    transform:translateY(6px);
  }

  .sa8-eyebrow{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:4px;
  }

  .sa8-title{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
  }
  .sa8-title span{color:var(--sa8-violet);}

  .sa8-desc{
    font-size:15px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:10px;
  }

  .sa8-bullets{
    list-style:none;
    padding-left:0;
    font-size:14px;
  }
  .sa8-bullets li{
    display:flex;
    gap:8px;
    align-items:flex-start;
    margin-bottom:6px;
  }
  .sa8-bullets li .dot{
    font-size:16px;
    color:var(--sa8-cyan);
  }

  /* DEMO */
  .sa8-demo{
    border-radius:18px;
    padding:14px 16px 18px;
    background:radial-gradient(circle at 0 0,#e0f2fe,#fef3c7);
    box-shadow:0 16px 40px rgba(15,23,42,.26);
    display:flex;
    flex-direction:column;
    gap:10px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .sa8-demo.sa8-switching{
    opacity:0;
    transform:translateY(6px);
  }

  .sa8-demo-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
  }

  .sa8-demo-title{
    font-size:16px;
    font-weight:700;
  }

  .sa8-demo-video{
    flex:1;
    border-radius:14px;
    border:1px dashed rgba(55,65,81,.42);
    background:#020617;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e5e7eb;
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    position:relative;
    text-align:center;
    padding:0 14px;
    line-height:1.4;
  }

  .sa8-demo-play{
    position:absolute;
    bottom:10px;
    left:10px;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(15,23,42,.9);
    color:#f9fafb;
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:6px;
  }
  .sa8-demo-play span.icon{
    width:18px;height:18px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;justify-content:center;
    background:radial-gradient(circle at 30% 20%,#fefce8,#bfdbfe);
    color:#4f46e5;
    font-size:10px;
  }

  @media (max-width:900px){
    .sa8-panel{
      grid-template-columns:1fr;
      padding:20px 18px 22px;
    }
  }
  @media (max-width:640px){
    .sa8-section{padding:60px 16px 70px;}
    .sa8-tab{white-space:normal;}
    .sa8-demo-video{font-size:11px;}
  }
 
 
  :root{
    --tg9-pink:#ec4899;
    --tg9-indigo:#6366f1;
    --tg9-lime:#a3e635;
    --tg9-text:#020617;
  }

  .tg9-section{
    padding:70px 20px 90px;
    font-family:"Nunito", sans-serif;
    color:var(--tg9-text);
    background:
      radial-gradient(circle at 8% 0,rgba(236,72,153,.35),transparent 55%),
      radial-gradient(circle at 100% 95%,rgba(129,140,248,.45),transparent 55%),
      linear-gradient(135deg,#fdf2ff,#eef2ff);
  }

  .tg9-inner{max-width:1160px;margin:0 auto;}

  .tg9-heading{
    text-align:center;
    font-size:clamp(30px,3.3vw,40px);
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:10px;
  }
  .tg9-heading span{color:var(--tg9-pink);}

  .tg9-tagline{
    text-align:center;
    font-size:clamp(18px,2.2vw,22px);
    font-weight:700;
    color:var(--tg9-pink);
    margin-bottom:26px;
  }

  /* TABS */
  .tg9-tabs{
    max-width:860px;
    margin:0 auto 24px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .tg9-tab{
    flex:1 1 0;
    min-width:240px;
    border-radius:999px;
    padding:10px 18px;
    border:1px solid rgba(148,163,184,.75);
    background:linear-gradient(135deg,#ffffff,#f9fafb);
    box-shadow:0 10px 24px rgba(148,163,184,.26);
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    position:relative;
    overflow:hidden;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
    text-align:left;
  }

  .tg9-tab .label{
    position:relative;
    line-height:1.3;
  }
  .tg9-tab .label small{
    display:block;
    font-size:11px;
    font-weight:600;
    opacity:.8;
  }
  .tg9-tab .icon{
    position:relative;
    width:26px;height:26px;
    border-radius:999px;
    display:flex;align-items:center;justify-content:center;
    font-size:15px;
    background:radial-gradient(circle at 30% 20%,#ffffff,#e5e7eb);
    box-shadow:0 6px 12px rgba(15,23,42,.25);
    flex-shrink:0;
  }

  .tg9-tab.active{
    border-color:transparent;
    background:linear-gradient(135deg,#ec4899,#6366f1);
    color:#f9fafb;
    box-shadow:0 16px 40px rgba(129,140,248,.55);
    transform:translateY(-3px);
  }

  /* PANEL */
  .tg9-panel-shell{
    margin:0 auto;
    border-radius:26px;
    padding:1px;
    background:linear-gradient(135deg,#ec4899,#6366f1,#a3e635);
    box-shadow:0 20px 60px rgba(15,23,42,.36);
  }

  .tg9-panel{
    border-radius:24px;
    background:#ffffff;
    padding:24px 26px 26px;
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(0,1.1fr);
    gap:26px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .tg9-panel.tg9-switching{
    opacity:1;
    transform:translateY(6px);
  }

  .tg9-eyebrow{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:4px;
  }

  .tg9-title{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
  }
  .tg9-title span{color:var(--tg9-indigo);}

  .tg9-desc{
    font-size:15px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:10px;
  }

  .tg9-bullets{
    list-style:none;
    padding-left:0;
    font-size:14px;
  }
  .tg9-bullets li{
    display:flex;
    gap:8px;
    align-items:flex-start;
    margin-bottom:6px;
  }
  .tg9-bullets li .dot{
    font-size:16px;
    color:var(--tg9-pink);
  }

  /* DEMO */
  .tg9-demo{
    border-radius:18px;
    padding:14px 16px 18px;
    background:radial-gradient(circle at 0 0,#f9a8d4,#e0f2fe);
    box-shadow:0 16px 40px rgba(15,23,42,.26);
    display:flex;
    flex-direction:column;
    gap:10px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .tg9-demo.tg9-switching{
    opacity:0;
    transform:translateY(6px);
  }

  .tg9-demo-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
  }

  .tg9-demo-title{
    font-size:16px;
    font-weight:700;
  }

  .tg9-demo-video{
    flex:1;
    border-radius:14px;
    border:1px dashed rgba(55,65,81,.42);
    background:#020617;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e5e7eb;
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    position:relative;
    text-align:center;
    padding:0 14px;
    line-height:1.4;
  }

  .tg9-demo-play{
    position:absolute;
    bottom:10px;
    left:10px;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(15,23,42,.9);
    color:#f9fafb;
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:6px;
  }
  .tg9-demo-play span.icon{
    width:18px;height:18px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;justify-content:center;
    background:radial-gradient(circle at 30% 20%,#fefce8,#bfdbfe);
    color:#4f46e5;
    font-size:10px;
  }

  @media (max-width:900px){
    .tg9-panel{
      grid-template-columns:1fr;
      padding:20px 18px 22px;
    }
  }
  @media (max-width:640px){
    .tg9-section{padding:60px 16px 70px;}
    .tg9-demo-video{font-size:11px;}
  }
 
 
  :root{
    --t10-pink:#ec4899;
    --t10-purple:#a855f7;
    --t10-indigo:#6366f1;
    --t10-cyan:#22d3ee;
    --t10-text:#020617;
  }
.t10-section {
    padding: 60px 20px 60px;
    font-family: "Nunito", sans-serif;
    color: var(--t10-text);
    background: radial-gradient(circle at 0 0,rgba(236,72,153,.45),transparent 55%),
      radial-gradient(circle at 100% 0,rgba(56,189,248,.35),transparent 55%),
      radial-gradient(circle at 50% 105%,rgba(129,140,248,.55),transparent 55%),
      linear-gradient(135deg,#0f172a,#020617);
    margin-bottom: 0px;
}

  .t10-inner{max-width:1180px;margin:0 auto;}

  .t10-heading{
    text-align:center;
    font-size:clamp(30px,3.4vw,40px);
    font-weight:800;
    letter-spacing:.03em;
    color:#f9fafb;
    margin-bottom:8px;
  }
  .t10-heading span{color:var(--t10-pink);}

  .t10-tagline{
    text-align:center;
    font-size:clamp(18px,2.1vw,22px);
    font-weight:600;
    color:#fbbf24;
    margin-bottom:30px;
  }

  /* FEATURE GRID */
  .t10-grid{
    max-width:980px;
    margin:0 auto 28px;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr)); /* 4 + 4 + 2 layout on desktop */
    gap:12px;
  }

  .t10-tab{
    position:relative;
    border-radius:16px;
    padding:10px 10px 10px 14px;
    background:linear-gradient(135deg,rgba(15,23,42,.9),rgba(30,64,175,.85));
    border:1px solid rgba(148,163,184,.6);
    color:#e5e7eb;
    font-size:13px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    text-align:left;
    box-shadow:0 10px 22px rgba(15,23,42,.7);
    overflow:hidden;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease,opacity .18s ease;
  }

  .t10-tab .num{
    width:22px;height:22px;
    border-radius:999px;
    display:flex;
    align-items:center;justify-content:center;
    background:radial-gradient(circle at 30% 20%,#f9fafb,#fee2e2);
    color:#020617;
    font-size:11px;
    font-weight:800;
    flex-shrink:0;
  }
  .t10-tab .label{
    line-height:1.3;
  }

  .t10-tab::before{
    content:"";
    position:absolute;
    inset:-40%;
    background:conic-gradient(from 180deg,var(--t10-pink),var(--t10-indigo),var(--t10-cyan),var(--t10-pink));
    opacity:0;
    transition:opacity .2s ease;
    z-index:-1;
  }

  .t10-tab.active{
    border-color:transparent;
    background:radial-gradient(circle at 0 0,rgba(251,113,133,.18),transparent 55%),
               radial-gradient(circle at 100% 100%,rgba(96,165,250,.18),transparent 55%),
               linear-gradient(135deg,rgba(236,72,153,.95),rgba(99,102,241,.92));
    box-shadow:0 18px 40px rgba(59,130,246,.65);
    transform:translateY(-2px);
  }
  .t10-tab.active::before{opacity:.5;}
  .t10-tab:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(15,23,42,.85);}

  /* PANEL WRAP */
  .t10-panel-shell{
    max-width:1040px;
    margin:0 auto;
    padding:1px;
    border-radius:26px;
    background:linear-gradient(135deg,var(--t10-pink),var(--t10-indigo),var(--t10-cyan));
    box-shadow:0 26px 70px rgba(15,23,42,.95);
  }

  .t10-panel{
    border-radius:24px;
    background:radial-gradient(circle at 0 0,#0f172a,#020617 50%,#020617 70%);
    padding:26px 26px 28px;
    display:grid;
    grid-template-columns:minmax(0,1.6fr) minmax(0,1.2fr);
    gap:26px;
    color:#e5e7eb;
    transition:opacity .25s ease,transform .25s ease;
  }
  .t10-panel.t10-switching{
    opacity:0;
    transform:translateY(6px);
  }

  .t10-copy{}
  .t10-eyebrow{
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
    font-weight:700;
    color:#9ca3af;
    margin-bottom:6px;
  }
  .t10-title{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
  }
  .t10-title span{color:#a5b4fc;}
  .t10-desc{
    font-size:15px;
    line-height:1.8;
    color:#d1d5db;
    margin-bottom:10px;
  }

  .t10-bullets{
    list-style:none;
    padding-left:0;
    margin:0;
    font-size:14px;
  }
  .t10-bullets li{
    display:flex;
    gap:8px;
    align-items:flex-start;
    margin-bottom:6px;
  }
  .t10-bullets .dot{
    color:var(--t10-pink);
    font-size:18px;
    line-height:1;
  }

  /* DEMO CARD */
  .t10-demo{
    border-radius:18px;
    padding:14px 16px 18px;
    background:radial-gradient(circle at 0 0,#f97316,#ec4899);
    box-shadow:0 16px 40px rgba(15,23,42,.9);
    display:flex;
    flex-direction:column;
    gap:10px;
    transition:opacity .25s ease,transform .25s ease;
  }
  .t10-demo.t10-switching{
    opacity:0;
    transform:translateY(6px);
  }

  .t10-demo-label{
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
    font-weight:700;
    color:#fee2e2;
  }
  .t10-demo-title{
    font-size:15px;
    font-weight:700;
    color:#f9fafb;
  }

  .t10-demo-video{
    position:relative;
    border-radius:14px;
    border:1px solid rgba(15,23,42,.9);
    background:#020617;
    padding:36px 16px 30px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    text-align:center;
    color:#e5e7eb;
    font-size:11px;
    letter-spacing:.18em;
    text-transform:uppercase;
  }

  /* Decorative mini timeline */
  .t10-timeline{
    width:100%;
    max-width:260px;
    height:56px;
    border-radius:10px;
    background:radial-gradient(circle at 0 0,#0f172a,#020617);
    border:1px solid rgba(148,163,184,.3);
    padding:6px 10px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    position:relative;
    overflow:hidden;
  }
  .t10-timeline .lane{
    height:10px;
    border-radius:999px;
    background:linear-gradient(90deg,rgba(236,72,153,.9),rgba(56,189,248,.9));
  }
  .t10-timeline .lane-b{
    width:80%;
    opacity:.75;
  }
  .t10-timeline .lane-c{
    width:60%;
    opacity:.6;
  }
  .t10-timeline .lane-a{width:100%;}
  .t10-timeline .playhead{
    position:absolute;
    top:0;
    bottom:0;
    left:55%;
    width:2px;
    background:#e5e7eb;
    box-shadow:0 0 8px rgba(248,250,252,.8);
  }

  .t10-demo-play{
    position:absolute;
    left:12px;
    bottom:10px;
    padding:7px 11px;
    border-radius:999px;
    background:rgba(15,23,42,.9);
    border:1px solid rgba(148,163,184,.6);
    display:flex;
    align-items:center;
    gap:6px;
    font-size:10px;
    letter-spacing:.18em;
    text-transform:uppercase;
  }
  .t10-demo-play .play-icon{
    width:18px;height:18px;
    border-radius:999px;
    display:flex;
    align-items:center;justify-content:center;
    background:radial-gradient(circle at 30% 20%,#fefce8,#fee2e2);
    color:#0f172a;
    font-size:10px;
  }

  @media (max-width:900px){
    .t10-panel{
      grid-template-columns:1fr;
      padding:22px 18px 24px;
    }
    .t10-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  }
  @media (max-width:640px){
    .t10-section{padding:70px 16px 80px;}
    .t10-grid{grid-template-columns:minmax(0,1fr);}
    .t10-demo-video{font-size:10px;}
  }
 
<!-- ===================== CTA STYLES ===================== -->
 
  .tp-cta {
    padding: 80px 16px 30px;
    background: #ffffff;
  }

  .tp-cta-inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
   
  }

.tp-cta-eyebrow {
    max-width: 960px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.tp-cta-title {
    margin: 20px auto 0px;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

  .tp-cta-title span {
    font-weight: 700;
  }

  .tp-cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 64px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff7a3c 0%, #ff3f7c 40%, #b027ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 40px rgba(255, 67, 132, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    margin-bottom: 26px;
  }

  .tp-cta-button-line1 {
    text-transform: none;
  }

  .tp-cta-button-line2 {
    font-size: 24px;
    margin-top: 4px;
  }

  .tp-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(255, 67, 132, 0.45);
    filter: brightness(1.05);
  }

  .tp-cta-subline {
    margin: 0 auto 26px;
    font-size: 17px;
    color: #222222;
  }

  .tp-cta-subline .divider {
    margin: 0 8px;
    opacity: 0.45;
  }

  .tp-cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
  }

  .tp-cta-payments img {
    height: 40px;
    margin: 0 4px;
    object-fit: contain;
  }

  .tp-cta-guarantee img {
    height: 64px;
    object-fit: contain;
  }

  .tp-cta-bottom {
    margin: 0;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #111111;
  }

  /* -------- Responsive tweaks -------- */
  @media (max-width: 768px) {
    .tp-cta {
      padding: 60px 16px 80px;
    }

    .tp-cta-title {
      font-size: 24px;
    }

    .tp-cta-button {
      width: 100%;
      max-width: 420px;
      padding: 20px 20px;
      font-size: 22px;
    }

    .tp-cta-button-line2 {
      font-size: 20px;
    }

    .tp-cta-bottom {
      font-size: 20px;
    }

    .tp-cta-trust {
      gap: 12px;
    }

    .tp-cta-payments img {
      height: 32px;
    }

    .tp-cta-guarantee img {
      height: 56px;
    }
  }
 

<!-- ===================== LAUNCH TIMELINE SECTION ===================== -->
 
  .launch-timeline {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    position: relative;
    overflow: hidden;
  }

  .launch-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 31, 140, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(123, 97, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .launch-timeline-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .launch-timeline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .launch-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

  .launch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .launch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
  }
  .launch-card img {
    width: 100%;
}
  .launch-card-pink {
    background: linear-gradient(135deg, #fff1f8 0%, #ffeef6 100%);
  }

  .launch-card-pink::before {
    background: linear-gradient(90deg, #ff1f8c 0%, #ff6bb3 100%);
  }

  .launch-card-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  }

  .launch-card-blue::before {
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  }

  .launch-card-purple {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  }

  .launch-card-purple::before {
    background: linear-gradient(90deg, #7b61ff 0%, #a78bfa 100%);
  }

  .launch-card-illustration {
    width: 100%;
    height: 180px;
    position: relative;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .illustration-money {
    position: relative;
    width: 140px;
    height: 140px;
  }

  .money-stack {
    position: absolute;
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
    transform: perspective(300px) rotateX(15deg);
  }

  .money-stack::before {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .money-stack:nth-child(1) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) perspective(300px) rotateX(15deg);
    z-index: 3;
  }

  .money-stack:nth-child(2) {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) perspective(300px) rotateX(15deg) scale(0.95);
    opacity: 0.8;
    z-index: 2;
  }

  .money-stack:nth-child(3) {
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%) perspective(300px) rotateX(15deg) scale(0.9);
    opacity: 0.6;
    z-index: 1;
  }

  .gift-box {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 6px;
    top: 20px;
    right: 20px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  }

  .gift-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #fbbf24;
    transform: translateY(-50%);
  }

  .gift-box::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #fbbf24;
    transform: translateX(-50%);
  }

  .trophy {
    position: absolute;
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 20px 20px 0 0;
    bottom: 10px;
    left: 10px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
  }

  .trophy::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #fbbf24;
  }

  .illustration-laptop {
    position: relative;
    width: 180px;
    height: 120px;
  }

  .laptop-base {
    width: 180px;
    height: 100px;
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    border-radius: 8px 8px 2px 2px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .laptop-screen {
    width: 160px;
    height: 100px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 4px;
    position: absolute;
    top: 4px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .laptop-character {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    position: relative;
    animation: wave 2s ease-in-out infinite;
  }

  .laptop-character::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #78350f;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  }

  .laptop-character::after {
    content: '';
    position: absolute;
    top: 15px;
    left: -8px;
    width: 15px;
    height: 20px;
    background: #ef4444;
    border-radius: 0 50% 50% 0;
    animation: wave-arm 2s ease-in-out infinite;
  }

  @keyframes wave {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
  }

  @keyframes wave-arm {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(20deg); }
  }

  .laptop-mug {
    position: absolute;
    width: 30px;
    height: 35px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 0 0 4px 4px;
    bottom: 10px;
    left: -20px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
  }

  .laptop-mug::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 8px;
    background: #fbbf24;
    border-radius: 4px;
  }

  .laptop-phone {
    position: absolute;
    width: 20px;
    height: 35px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 4px;
    bottom: 10px;
    right: -15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .illustration-rocket {
    position: relative;
    width: 200px;
    height: 160px;
  }

  .rocket-laptop {
    width: 140px;
    height: 90px;
    background: linear-gradient(135deg, #a78bfa 0%, #7b61ff 100%);
    border-radius: 8px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(123, 97, 255, 0.3);
  }

  .rocket-laptop::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 10px;
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 4px;
  }

  .rocket-laptop::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  }

  .rocket {
    position: absolute;
    width: 50px;
    height: 80px;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border-radius: 50% 50% 0 0;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
    animation: rocket-launch 3s ease-in-out infinite;
  }

  .rocket::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #ec4899;
  }

  .rocket-smoke {
    position: absolute;
    width: 30px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation: smoke 2s ease-out infinite;
  }

  .rocket-smoke::before,
  .rocket-smoke::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -10px;
  }

  .rocket-smoke::before {
    left: -15px;
  }

  .rocket-smoke::after {
    right: -15px;
  }

  @keyframes rocket-launch {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
  }

  @keyframes smoke {
    0% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    100% { opacity: 0; transform: translateX(-50%) scale(1.5) translateY(-10px); }
  }

  .launch-card-label {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .launch-card-label-pink {
    background: linear-gradient(135deg, #ff1f8c 0%, #ff6bb3 100%);
    color: #ffffff;
    margin-top: 20px;
}

  .launch-card-label-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
  }

  .launch-card-label-purple {
    background: linear-gradient(135deg, #7b61ff 0%, #a78bfa 100%);
    color: #ffffff;
  }

  .launch-card-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #0f172a;
    letter-spacing: -0.5px;
}

  .launch-card-text {
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 12px;
    font-weight: 500;
  }

  .launch-card-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 20px;
    margin-bottom: 8px;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 12px;
  }

  .launch-card-subtitle-pink {
    background: rgba(255, 31, 140, 0.1);
    color: #ff1f8c;
  }

  .launch-card-subtitle-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
  }

  .launch-card-subtitle-purple {
    background: rgba(123, 97, 255, 0.1);
    color: #7b61ff;
  }

  @media (max-width: 1024px) {
    .launch-timeline-cards {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
  }

  @media (max-width: 768px) {
    .launch-timeline {
      padding: 60px 20px;
    }

    .launch-timeline-cards {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .launch-card {
      padding: 32px 24px;
    }

    .launch-card-title {
      font-size: 28px;
    }

    .launch-card-text {
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    .launch-card-illustration {
      height: 150px;
    }

    .launch-card-title {
      font-size: 24px;
    }
  }

  /* ===================== PROMOTIONAL RESOURCES SECTION ===================== */
  .promo-resources {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 25%, #f1f5f9 50%, #ffffff 75%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
  }

  .promo-resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }

  .promo-resources::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px);
    pointer-events: none;
  }

  .promo-resources-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .promo-resources-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 60px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .promo-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
  }

  .promo-resource-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Button 1 - Blue/Purple Gradient */
  .promo-btn-1 {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #4338ca 100%);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35),
                0 4px 8px rgba(99, 102, 241, 0.25);
  }

  .promo-btn-1:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.45),
                0 6px 12px rgba(99, 102, 241, 0.35);
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 50%, #3730a3 100%);
    color: #ffffff;
  }

  /* Button 2 - Pink/Magenta Gradient */
  .promo-btn-2 {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #be185d 100%);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35),
                0 4px 8px rgba(236, 72, 153, 0.25);
  }

  .promo-btn-2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.45),
                0 6px 12px rgba(236, 72, 153, 0.35);
    background: linear-gradient(135deg, #db2777 0%, #be185d 50%, #9f1239 100%);
    color: #ffffff;
  }

  /* Button 3 - Orange/Red Gradient */
  .promo-btn-3 {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35),
                0 4px 8px rgba(249, 115, 22, 0.25);
  }

  .promo-btn-3:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.45),
                0 6px 12px rgba(249, 115, 22, 0.35);
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
    color: #ffffff;
  }

  /* Button 4 - Green/Teal Gradient */
  .promo-btn-4 {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35),
                0 4px 8px rgba(16, 185, 129, 0.25);
  }

  .promo-btn-4:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45),
                0 6px 12px rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    color: #ffffff;
  }

  /* Button 5 - Purple/Blue Gradient */
  .promo-btn-5 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35),
                0 4px 8px rgba(139, 92, 246, 0.25);
  }

  .promo-btn-5:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.45),
                0 6px 12px rgba(139, 92, 246, 0.35);
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
    color: #ffffff;
  }

  /* Button 6 - Cyan/Blue Gradient */
  .promo-btn-6 {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35),
                0 4px 8px rgba(6, 182, 212, 0.25);
  }

  .promo-btn-6:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.45),
                0 6px 12px rgba(6, 182, 212, 0.35);
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 50%, #155e75 100%);
    color: #ffffff;
  }

  .promo-resource-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
  }

  .promo-resource-btn:hover::before {
    left: 100%;
  }

  .promo-resource-btn:hover {
    color: #ffffff;
  }

  .promo-resource-btn:active {
    transform: translateY(-2px);
    color: #ffffff;
  }

  .promo-resource-btn span {
    position: relative;
    z-index: 1;
  }

  @media (max-width: 968px) {
    .promo-resources-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .promo-resources-heading {
      font-size: 36px;
      margin-bottom: 50px;
    }
  }

  @media (max-width: 640px) {
    .promo-resources {
      padding: 60px 20px;
    }

    .promo-resources-heading {
      font-size: 28px;
      margin-bottom: 40px;
      padding: 0 10px;
    }

    .promo-resources-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .promo-resource-btn {
      padding: 20px 24px;
      font-size: 14px;
    }
  }

  /* ===================== CONVERSION FUNNEL SECTION ===================== */
  .conversion-funnel {
    padding: 70px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #0f172a 50%, #1e293b 75%, #0f172a 100%);
    position: relative;
    overflow: hidden;
  }

  .conversion-funnel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }

  .conversion-funnel-inner {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .conversion-funnel-title {
    text-align: center;
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 80px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  }

  .funnel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
  }

  .funnel-card {
    background: #ffffff;
    border-radius: 20px;
    width: 280px;
    min-height: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 8px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .funnel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 12px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .funnel-card-banner {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .funnel-card-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
  }

  .funnel-card:hover .funnel-card-banner::before {
    left: 100%;
  }

  .funnel-banner-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  }

  .funnel-banner-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
  }

  .funnel-banner-yellow {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  }

  .funnel-banner-purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 50%, #7e22ce 100%);
  }

  .funnel-banner-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
  }

  .funnel-banner-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  }

  .funnel-card-content {
    padding: 24px 20px;
    color: #1e293b;
  }

  .funnel-card-product {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #0f172a;
  }

  .funnel-card-frontend .funnel-card-product {
    color: #2563eb;
  }

  .funnel-card-oto1 .funnel-card-product {
    color: #dc2626;
  }

  .funnel-card-oto2 .funnel-card-product {
    color: #d97706;
  }

  .funnel-card-oto3 .funnel-card-product {
    color: #9333ea;
  }

  .funnel-card-oto4 .funnel-card-product {
    color: #0891b2;
  }

  .funnel-card-oto5 .funnel-card-product {
    color: #059669;
  }

  .funnel-card-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #475569;
    font-weight: 500;
  }

  .funnel-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }
.funnel-card-features li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #000;
    font-weight: 500;
}

  .funnel-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 14px;
  }

  .funnel-card-price {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    padding: 16px;
    border-radius: 12px;
    margin-top: auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .funnel-card-frontend .funnel-card-price {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }

  .funnel-card-oto1 .funnel-card-price {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  }

  .funnel-card-oto2 .funnel-card-price {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
  }

  .funnel-card-oto3 .funnel-card-price {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 50%, #7e22ce 100%);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
  }

  .funnel-card-oto4 .funnel-card-price {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
  }

  .funnel-card-oto5 .funnel-card-price {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  }

  .funnel-arrow {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .funnel-arrow svg {
    width: 100%;
    height: 100%;
  }

  .funnel-arrow-pink {
    color: #ec4899;
    filter: drop-shadow(0 4px 8px rgba(236, 72, 153, 0.4));
  }

  .funnel-arrow-orange {
    color: #f97316;
    filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.4));
  }

  .funnel-arrow-purple {
    color: #a855f7;
    filter: drop-shadow(0 4px 8px rgba(168, 85, 247, 0.4));
  }

  .funnel-arrow-cyan {
    color: #06b6d4;
    filter: drop-shadow(0 4px 8px rgba(6, 182, 212, 0.4));
  }

  .funnel-arrow-green {
    color: #10b981;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.4));
  }

  @media (max-width: 1400px) {
    .funnel-container {
      gap: 15px;
    }

    .funnel-card {
      width: 260px;
      min-height: 480px;
    }

    .funnel-arrow {
      width: 50px;
      height: 50px;
    }
  }

  @media (max-width: 1200px) {
    .funnel-container {
      flex-direction: column;
      align-items: center;
    }

    .funnel-card {
      width: 100%;
      max-width: 400px;
      min-height: auto;
    }

    .funnel-arrow {
      transform: rotate(90deg);
      width: 40px;
      height: 40px;
      margin: 10px 0;
    }
  }

  @media (max-width: 768px) {
    .conversion-funnel {
      padding: 60px 20px;
    }

    .conversion-funnel-title {
      font-size: 36px;
      margin-bottom: 50px;
    }

    .funnel-card {
      max-width: 100%;
    }

    .funnel-card-content {
      padding: 20px 16px;
    }

    .funnel-card-product {
      font-size: 20px;
    }

    .funnel-card-description {
      font-size: 12px;
    }

    .funnel-card-features li {
      font-size: 11px;
    }

    .funnel-card-price {
      font-size: 24px;
      padding: 12px;
    }
  }

  @media (max-width: 480px) {
    .conversion-funnel-title {
      font-size: 28px;
      margin-bottom: 40px;
    }

    .funnel-card-banner {
      padding: 12px 16px;
      font-size: 12px;
    }
  }
 
<!-- ===================== TESTIMONIALS STYLES ===================== -->
 
  .tp-testimonials {
    padding: 80px 16px 80px;
    background: #fff;
  }

  .tp-testimonials-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
  }

  .tp-testimonials-header {
    margin-bottom: 50px;
  }

  .tp-testimonials-eyebrow {
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: 800;
    text-transform: capitalize;
    color: #ff2b8b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }

  .tp-heading-icon {
    font-size: 36px;
    display: inline-block;
    animation: iconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 43, 139, 0.3));
  }

  @keyframes iconBounce {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-5px) scale(1.05);
    }
  }

  .tp-testimonials-tagline {
    margin: 0 0 16px;
    font-size: 26px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.4;
  }

  .tp-tagline-icon {
    font-size: 28px;
    display: inline-block;
    animation: starRotate 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
  }

  @keyframes starRotate {
    0%, 100% {
      transform: rotate(0deg) scale(1);
    }
    25% {
      transform: rotate(-10deg) scale(1.1);
    }
    75% {
      transform: rotate(10deg) scale(1.1);
    }
  }

  .tp-testimonials-subtagline {
    margin: 0 0 0;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.4;
  }

  .tp-subtagline-icon {
    font-size: 24px;
    display: inline-block;
    animation: rocketMove 2.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
  }

  @keyframes rocketMove {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-8px) rotate(15deg);
    }
  }

.tp-testimonials-sub {
    margin: 0 0 48px;
    font-size: 28px;
    color: #333;
    font-weight: 700;
    color: #ff2b8b;
}

  .tp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 10px;
  }

  .tp-test-card {
    position: relative;
    text-align: left;
    padding: 22px 22px 24px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
  }

  /* subtle pastel overlays – different vibe for each card */
  .tp-test-card-a { background: linear-gradient(135deg, #ffe5f3 0%, #ffffff 55%, #ffeafc 100%); }
  .tp-test-card-b { background: linear-gradient(135deg, #e3f5ff 0%, #ffffff 55%, #e8f4ff 100%); }
  .tp-test-card-c { background: linear-gradient(135deg, #fff2d9 0%, #ffffff 55%, #ffeedf 100%); }
  .tp-test-card-d { background: linear-gradient(135deg, #e9ffe9 0%, #ffffff 55%, #f0fff2 100%); }
  .tp-test-card-e { background: linear-gradient(135deg, #f3ecff 0%, #ffffff 55%, #f7f0ff 100%); }
  .tp-test-card-f { background: linear-gradient(135deg, #ffeef2 0%, #ffffff 55%, #ffe9eb 100%); }
  .tp-test-card-g { background: linear-gradient(135deg, #ffe5f3 0%, #ffffff 55%, #ffeafc 100%); }
  .tp-test-card-h { background: linear-gradient(135deg, #e3f5ff 0%, #ffffff 55%, #e8f4ff 100%); }

.tp-test-avatar {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.tp-test-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
    border-radius: 10000px;
    border: 1px solid #ff3457;
}

  .tp-test-name {
    margin: 0 0 2px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
  }

.tp-test-role {
    margin: 0 0 3px;
    font-size: 13px;
    color: #777;
    font-style: italic;
    line-height: 1.2;
    position: relative;
    top: 3px;
}
  .tp-test-quote {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #222;
  }

  .tp-test-quote span {
    color: #ff2b8b;
    font-weight: 700;
  }

  .tp-test-bottom {
    text-align: center;
  }

 .tp-test-bottom-top {
    margin: 0 0 6px;
    font-size: 21px;
    color: #555;
}

.tp-test-bottom-mid {
    margin: 0 0 4px;
    font-size: 25px;
    font-weight: 600;
}

.tp-test-bottom-bottom {
    margin: 0;
    font-size: 39px;
    font-weight: 800;
    color: #ff2b8b;
    margin: 11px auto 20px;
    display: table;
    background: #fff;
    padding: 4px 17px;
    border-radius: 10px;
}

  .tp-not {
    color: #ff2b8b;
    text-transform: uppercase;
  }

  .tp-results {
    text-transform: uppercase;
  }

  /* Hover effect */
  .tp-test-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.18s ease;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .tp-testimonials-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp-testimonials-eyebrow {
      font-size: 28px;
    }

    .tp-testimonials-tagline {
      font-size: 24px;
    }

    .tp-testimonials-subtagline {
      font-size: 20px;
    }
  }

  @media (max-width: 640px) {
    .tp-testimonials {
      padding: 60px 16px 70px;
    }

    .tp-testimonials-header {
      margin-bottom: 40px;
    }

    .tp-testimonials-eyebrow {
      font-size: 24px;
      flex-direction: column;
      gap: 8px;
    }

    .tp-heading-icon {
      font-size: 32px;
    }

    .tp-testimonials-tagline {
      font-size: 20px;
      flex-direction: column;
      gap: 8px;
    }

    .tp-tagline-icon {
      font-size: 24px;
    }

    .tp-testimonials-subtagline {
      font-size: 18px;
      flex-direction: column;
      gap: 8px;
    }

    .tp-subtagline-icon {
      font-size: 20px;
    }

    .tp-testimonials-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .tp-test-card {
      padding: 18px 18px 20px;
    }
  }
 
<!-- ===================== PLUS BONUSES STYLES ===================== -->
 
  .tp-bonuses {
    padding: 60px 16px 80px;
    background: linear-gradient(135deg, 
      rgba(255, 245, 249, 0.95) 0%, 
      rgba(248, 250, 255, 0.95) 25%,
      rgba(255, 250, 245, 0.95) 50%,
      rgba(245, 250, 255, 0.95) 75%,
      rgba(255, 245, 249, 0.95) 100%);
    background-size: 400% 400%;
    animation: bonusGradientShift 20s ease infinite;
    position: relative;
    overflow: hidden;
  }

  @keyframes bonusGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .tp-bonuses::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(255, 31, 140, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
    animation: bonusGlow 20s ease-in-out infinite;
  }

  @keyframes bonusGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(180deg); }
  }

  .tp-bonuses-inner {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .tp-bonuses-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1a0a2e;
    margin: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .tp-bonus-icon {
    font-size: 42px;
    display: inline-block;
    transform: perspective(500px) rotateY(-15deg) rotateX(5deg);
    filter: drop-shadow(0 8px 16px rgba(255, 31, 140, 0.4));
    animation: iconFloat 3s ease-in-out infinite;
  }

  .tp-bonus-crosshair {
    font-size: 32px;
    display: inline-block;
    transform: perspective(500px) rotateY(15deg) rotateX(5deg);
    filter: drop-shadow(0 8px 16px rgba(124, 58, 237, 0.4));
    animation: crosshairFloat 3s ease-in-out infinite;
    animation-delay: 0.5s;
  }

  @keyframes iconFloat {
    0%, 100% { transform: perspective(500px) rotateY(-15deg) rotateX(5deg) translateY(0); }
    50% { transform: perspective(500px) rotateY(-15deg) rotateX(5deg) translateY(-10px); }
  }

  @keyframes crosshairFloat {
    0%, 100% { transform: perspective(500px) rotateY(15deg) rotateX(5deg) translateY(0); }
    50% { transform: perspective(500px) rotateY(15deg) rotateX(5deg) translateY(-10px); }
  }

  .tp-bonuses-container {
    background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.95) 0%, 
      rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.08),
      0 0 0 1px rgba(255, 255, 255, 0.9) inset,
      0 8px 32px rgba(124, 58, 237, 0.06);
    position: relative;
    overflow: hidden;
  }

  .tp-bonuses-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
      #ff1f8c 0%, 
      #ff6bb3 25%,
      #7c3aed 50%, 
      #a78bfa 75%,
      #3b82f6 100%);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
    box-shadow: 0 0 20px rgba(255, 31, 140, 0.5);
  }

  @keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .tp-bonus-card {
    display: flex;
    align-items: flex-start;
    padding: 32px 28px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.9) 0%, 
      rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(5px);
  }

  .tp-bonus-card:last-child {
    margin-bottom: 0;
  }

  .tp-bonus-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff1f8c 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .tp-bonus-card:hover {
    transform: translateX(8px) translateY(-6px);
    box-shadow: 
      0 16px 48px rgba(124, 58, 237, 0.12),
      0 8px 24px rgba(0, 0, 0, 0.08),
      0 0 0 1px rgba(124, 58, 237, 0.15) inset;
    border-color: rgba(124, 58, 237, 0.25);
    background: linear-gradient(135deg, 
      rgba(255, 255, 255, 1) 0%, 
      rgba(255, 255, 255, 0.98) 50%,
      rgba(255, 255, 255, 1) 100%);
  }

  .tp-bonus-card:hover::before {
    opacity: 1;
  }

  .tp-bonus-icon-wrapper {
    flex-shrink: 0;
    margin-right: 24px;
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
  }

  .tp-bonus-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.3s ease;
  }

  .tp-bonus-card-1 .tp-bonus-icon-wrapper::before {
    background: radial-gradient(circle, #ff1f8c 0%, transparent 70%);
  }

  .tp-bonus-card-2 .tp-bonus-icon-wrapper::before {
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  }

  .tp-bonus-card-3 .tp-bonus-icon-wrapper::before {
    background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  }

  .tp-bonus-card-4 .tp-bonus-icon-wrapper::before {
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
  }

  .tp-bonus-card:hover .tp-bonus-icon-wrapper::before {
    opacity: 0.5;
    transform: scale(1.2);
  }

  .tp-bonus-icon-3d {
    width: 70px;
    height: 70px;
    display: block;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transform: perspective(600px) rotateY(-15deg) rotateX(10deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2))
            drop-shadow(0 0 30px rgba(0, 0, 0, 0.1));
    animation: icon3dFloat 4s ease-in-out infinite;
  }

  @keyframes icon3dFloat {
    0%, 100% { 
      transform: perspective(600px) rotateY(-15deg) rotateX(10deg) scale(1) translateZ(0);
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2))
              drop-shadow(0 0 30px rgba(0, 0, 0, 0.1));
    }
    50% { 
      transform: perspective(600px) rotateY(-10deg) rotateX(8deg) scale(1.08) translateZ(20px);
      filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25))
              drop-shadow(0 0 40px rgba(0, 0, 0, 0.15));
    }
  }

  .tp-bonus-card:hover .tp-bonus-icon-3d {
    transform: perspective(600px) rotateY(-5deg) rotateX(5deg) scale(1.2) translateZ(30px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0 50px rgba(0, 0, 0, 0.2));
    animation-play-state: paused;
  }

  .tp-bonus-card-1 .tp-bonus-icon-3d {
    filter: drop-shadow(0 8px 16px rgba(255, 31, 140, 0.35))
            drop-shadow(0 0 24px rgba(255, 31, 140, 0.4));
  }

  .tp-bonus-card-1:hover .tp-bonus-icon-3d {
    filter: drop-shadow(0 16px 32px rgba(255, 31, 140, 0.5))
            drop-shadow(0 0 40px rgba(255, 31, 140, 0.6));
  }

  .tp-bonus-card-2 .tp-bonus-icon-3d {
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.35))
            drop-shadow(0 0 24px rgba(59, 130, 246, 0.4));
  }

  .tp-bonus-card-2:hover .tp-bonus-icon-3d {
    filter: drop-shadow(0 16px 32px rgba(59, 130, 246, 0.5))
            drop-shadow(0 0 40px rgba(59, 130, 246, 0.6));
  }

  .tp-bonus-card-3 .tp-bonus-icon-3d {
    filter: drop-shadow(0 8px 16px rgba(124, 58, 237, 0.35))
            drop-shadow(0 0 24px rgba(124, 58, 237, 0.4));
  }

  .tp-bonus-card-3:hover .tp-bonus-icon-3d {
    filter: drop-shadow(0 16px 32px rgba(124, 58, 237, 0.5))
            drop-shadow(0 0 40px rgba(124, 58, 237, 0.6));
  }

  .tp-bonus-card-4 .tp-bonus-icon-3d {
    filter: drop-shadow(0 8px 16px rgba(16, 185, 129, 0.35))
            drop-shadow(0 0 24px rgba(16, 185, 129, 0.4));
  }

  .tp-bonus-card-4:hover .tp-bonus-icon-3d {
    filter: drop-shadow(0 16px 32px rgba(16, 185, 129, 0.5))
            drop-shadow(0 0 40px rgba(16, 185, 129, 0.6));
  }

  .tp-bonus-content {
    flex: 1;
  }

  .tp-bonus-title {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 700;
    color: #1a0a2e;
    background: linear-gradient(135deg, #1a0a2e 0%, #4c1d95 50%, #1a0a2e 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 3s ease infinite;
    line-height: 1.3;
  }

  @keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .tp-bonus-description {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    letter-spacing: 0.01em;
  }

  /* Enhanced Gradient overlays for each card with light gradients */
  .tp-bonus-card-1 {
    background: linear-gradient(135deg, 
      rgba(255, 245, 249, 0.95) 0%, 
      rgba(255, 250, 252, 0.98) 30%,
      rgba(255, 255, 255, 1) 60%,
      rgba(255, 255, 255, 1) 100%);
    border-left: 3px solid rgba(255, 31, 140, 0.3);
  }

  .tp-bonus-card-1::before {
    background: linear-gradient(180deg, 
      rgba(255, 31, 140, 0.4) 0%, 
      rgba(255, 107, 179, 0.3) 50%,
      rgba(255, 140, 200, 0.2) 100%);
  }

  .tp-bonus-card-2 {
    background: linear-gradient(135deg, 
      rgba(240, 245, 255, 0.95) 0%, 
      rgba(245, 250, 255, 0.98) 30%,
      rgba(255, 255, 255, 1) 60%,
      rgba(255, 255, 255, 1) 100%);
    border-left: 3px solid rgba(59, 130, 246, 0.3);
  }

  .tp-bonus-card-2::before {
    background: linear-gradient(180deg, 
      rgba(59, 130, 246, 0.4) 0%, 
      rgba(96, 165, 250, 0.3) 50%,
      rgba(147, 197, 253, 0.2) 100%);
  }

  .tp-bonus-card-3 {
    background: linear-gradient(135deg, 
      rgba(250, 245, 255, 0.95) 0%, 
      rgba(252, 250, 255, 0.98) 30%,
      rgba(255, 255, 255, 1) 60%,
      rgba(255, 255, 255, 1) 100%);
    border-left: 3px solid rgba(124, 58, 237, 0.3);
  }

  .tp-bonus-card-3::before {
    background: linear-gradient(180deg, 
      rgba(124, 58, 237, 0.4) 0%, 
      rgba(167, 139, 250, 0.3) 50%,
      rgba(196, 181, 253, 0.2) 100%);
  }

  .tp-bonus-card-4 {
    background: linear-gradient(135deg, 
      rgba(240, 253, 244, 0.95) 0%, 
      rgba(245, 255, 248, 0.98) 30%,
      rgba(255, 255, 255, 1) 60%,
      rgba(255, 255, 255, 1) 100%);
    border-left: 3px solid rgba(16, 185, 129, 0.3);
  }

  .tp-bonus-card-4::before {
    background: linear-gradient(180deg, 
      rgba(16, 185, 129, 0.4) 0%, 
      rgba(52, 211, 153, 0.3) 50%,
      rgba(110, 231, 183, 0.2) 100%);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .tp-bonuses {
      padding: 40px 16px 60px;
    }

    .tp-bonuses-heading {
      font-size: 28px;
      flex-direction: column;
      gap: 10px;
    }

    .tp-bonus-icon {
      font-size: 36px;
    }

    .tp-bonus-crosshair {
      font-size: 28px;
    }

    .tp-bonuses-container {
      padding: 24px 20px;
      border-radius: 20px;
    }

    .tp-bonus-card {
      padding: 20px 18px;
      flex-direction: column;
      align-items: flex-start;
    }

    .tp-bonus-icon-wrapper {
      margin-right: 0;
      margin-bottom: 16px;
      width: 60px;
      height: 60px;
    }

    .tp-bonus-icon-3d {
      width: 60px;
      height: 60px;
    }

    .tp-bonus-title {
      font-size: 20px;
    }

    .tp-bonus-description {
      font-size: 16px;
    }

    .tp-bonus-card:hover {
      transform: translateY(-4px);
    }
  }

  @media (max-width: 480px) {
    .tp-bonuses-heading {
      font-size: 24px;
    }
  }
 

<!-- ===================== VALUE REVEAL & IMAGINE STYLES ===================== -->
 
  .tp-value-reveal {
    padding: 80px 16px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 25%, #f5f0ff 50%, #fef0f5 75%, #fff5f0 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    position: relative;
    overflow: hidden;
  }

  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .tp-value-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .tp-value-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(102, 126, 234, 0.03) 2px, rgba(102, 126, 234, 0.03) 4px),
      repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(240, 147, 251, 0.03) 2px, rgba(240, 147, 251, 0.03) 4px);
    pointer-events: none;
    opacity: 0.5;
  }

  .tp-value-reveal-inner {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* Value Stack Section */
  .tp-value-stack {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    border-radius: 32px;
    padding: 60px 50px;
    margin-bottom: 60px;
    box-shadow: 
      0 20px 60px rgba(102, 126, 234, 0.15),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset,
      0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .tp-value-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #ff1f8c 0%, #7c3aed 20%, #3b82f6 40%, #10b981 60%, #f59e0b 80%, #ff1f8c 100%);
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
    box-shadow: 
      0 0 40px rgba(255, 31, 140, 0.5),
      0 4px 20px rgba(124, 58, 237, 0.3);
  }

  .tp-value-stack-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
  }

  .tp-value-icon-3d {
    font-size: 56px;
    display: inline-block;
    transform: perspective(800px) rotateY(-25deg) rotateX(15deg) translateZ(30px);
    filter: 
      drop-shadow(0 15px 35px rgba(102, 126, 234, 0.4))
      drop-shadow(0 0 50px rgba(118, 75, 162, 0.5))
      drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    animation: icon3dFloat 5s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    padding: 12px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
  }

  @keyframes icon3dFloat {
    0%, 100% { 
      transform: perspective(800px) rotateY(-25deg) rotateX(15deg) translateZ(30px) translateY(0) scale(1);
      filter: 
        drop-shadow(0 15px 35px rgba(102, 126, 234, 0.4))
        drop-shadow(0 0 50px rgba(118, 75, 162, 0.5))
        drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    }
    50% { 
      transform: perspective(800px) rotateY(-18deg) rotateX(12deg) translateZ(45px) translateY(-12px) scale(1.05);
      filter: 
        drop-shadow(0 20px 45px rgba(102, 126, 234, 0.6))
        drop-shadow(0 0 70px rgba(118, 75, 162, 0.7))
        drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    }
  }

  .tp-value-stack-subtitle {
    text-align: center;
    font-size: 20px;
    color: #4a5568;
    margin: 0 0 40px;
  }

  .tp-value-stack-subtitle strong {
    color: #667eea;
    font-weight: 700;
  }

  .tp-value-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
  }

  .tp-value-feature-card {
    display: flex;
    align-items: center;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 24px;
    border: 2px solid rgba(102, 126, 234, 0.15);
    box-shadow: 
      0 10px 40px rgba(102, 126, 234, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset,
      0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .tp-value-feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #ff1f8c 0%, #7c3aed 30%, #3b82f6 60%, #10b981 100%);
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 0 20px rgba(255, 31, 140, 0.5);
  }

  .tp-value-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(240, 147, 251, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }

  .tp-value-feature-card:hover {
    transform: translateX(12px) translateY(-8px) scale(1.02);
    box-shadow: 
      0 20px 60px rgba(102, 126, 234, 0.2),
      0 0 0 1px rgba(102, 126, 234, 0.25) inset,
      0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.35);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(252, 250, 255, 0.98) 100%);
  }

  .tp-value-feature-card:hover::before {
    opacity: 1;
    width: 8px;
  }

  .tp-value-feature-card:hover::after {
    opacity: 1;
  }

  .tp-value-feature-icon {
    flex-shrink: 0;
    margin-right: 28px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 
      0 8px 24px rgba(102, 126, 234, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .tp-3d-icon {
    font-size: 52px;
    display: inline-block;
    transform: perspective(700px) rotateY(-20deg) rotateX(12deg) translateZ(20px);
    filter: 
      drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25))
      drop-shadow(0 0 40px rgba(102, 126, 234, 0.5))
      drop-shadow(0 4px 12px rgba(118, 75, 162, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: icon3dPulse 4s ease-in-out infinite;
  }

  @keyframes icon3dPulse {
    0%, 100% { 
      transform: perspective(700px) rotateY(-20deg) rotateX(12deg) translateZ(20px) scale(1);
      filter: 
        drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25))
        drop-shadow(0 0 40px rgba(102, 126, 234, 0.5))
        drop-shadow(0 4px 12px rgba(118, 75, 162, 0.3));
    }
    50% { 
      transform: perspective(700px) rotateY(-12deg) rotateX(8deg) translateZ(35px) scale(1.08);
      filter: 
        drop-shadow(0 15px 35px rgba(0, 0, 0, 0.35))
        drop-shadow(0 0 60px rgba(102, 126, 234, 0.7))
        drop-shadow(0 6px 18px rgba(118, 75, 162, 0.5));
    }
  }

  .tp-value-feature-card:hover .tp-3d-icon {
    transform: perspective(700px) rotateY(-8deg) rotateX(6deg) translateZ(50px) scale(1.15);
    filter: 
      drop-shadow(0 18px 40px rgba(0, 0, 0, 0.4))
      drop-shadow(0 0 80px rgba(102, 126, 234, 0.8))
      drop-shadow(0 8px 24px rgba(118, 75, 162, 0.6));
  }

  .tp-value-feature-card:hover .tp-value-feature-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(240, 147, 251, 0.2) 100%);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 
      0 12px 32px rgba(102, 126, 234, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
  }

  .tp-value-feature-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .tp-value-feature-text {
    flex: 1;
  }

  .tp-value-feature-title {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 800;
    color: #1a0a2e;
    background: linear-gradient(135deg, #1a0a2e 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
  }

  .tp-value-feature-description {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.5;
    font-style: italic;
  }

  .tp-value-feature-price {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff1f8c 0%, #7c3aed 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 12px 24px;
    border-radius: 16px;
    background-color: rgba(102, 126, 234, 0.08);
    border: 2px solid rgba(102, 126, 234, 0.2);
    white-space: nowrap;
    box-shadow: 
      0 4px 12px rgba(102, 126, 234, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
  }

  .tp-value-feature-card:hover .tp-value-feature-price {
    background-color: rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
      0 6px 16px rgba(102, 126, 234, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
  }

  .tp-value-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 50%, rgba(240, 147, 251, 0.08) 100%);
    border-radius: 24px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    gap: 40px;
    box-shadow: 
      0 12px 40px rgba(102, 126, 234, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
  }

  .tp-value-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff1f8c 0%, #7c3aed 50%, #3b82f6 100%);
    opacity: 0.6;
  }

  .tp-value-total,
  .tp-value-your-price {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .tp-value-total-label,
  .tp-value-your-price-label {
    display: block;
    font-size: 22px;
    color: #475569;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 18px;
  }

  .tp-value-total-amount {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff1f8c 0%, #7c3aed 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .tp-value-your-price-amount {
    display: block;
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .tp-value-your-price-note {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
  }
  a {
    text-decoration: none;
}
  /* Imagine Section - Light Gradient Modern Design */
  .tp-imagine-section {
    background: linear-gradient(135deg, #f9fbff 0%, #f4f7ff 35%, #fef7ff 70%, #f4fffd 100%);
    backdrop-filter: blur(14px) saturate(125%);
    border-radius: 0px;
    padding: 60px 60px;
    box-shadow: 
      0 28px 70px rgba(63, 80, 120, 0.14),
      0 0 0 1px rgba(124, 58, 237, 0.12) inset,
      0 0 90px rgba(99, 102, 241, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
  }

  .tp-imagine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1 0%, #06b6d4 25%, #8b5cf6 50%, #ec4899 75%, #f59e0b 100%);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.35), 0 0 45px rgba(139, 92, 246, 0.28);
    z-index: 1;
  }

  .tp-imagine-section::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 30%, transparent 72%);
    animation: gradientRotate 20s linear infinite;
    pointer-events: none;
  }

  @keyframes gradientRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .tp-imagine-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #1f2937 0%, #4f46e5 35%, #7c3aed 65%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 8px 22px rgba(124, 58, 237, 0.18);
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
  }

  .tp-imagine-icon-3d {
    font-size: 52px;
    display: inline-block;
    transform: perspective(800px) rotateY(25deg) rotateX(-15deg) translateZ(30px);
    filter: drop-shadow(0 12px 30px rgba(99, 102, 241, 0.35))
            drop-shadow(0 0 45px rgba(139, 92, 246, 0.25))
            drop-shadow(0 0 70px rgba(236, 72, 153, 0.2));
    animation: icon3dFloatReverse 5s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.95);
  }

  @keyframes icon3dFloatReverse {
    0%, 100% { 
      transform: perspective(800px) rotateY(25deg) rotateX(-15deg) translateZ(30px) translateY(0) scale(1);
    }
    50% { 
      transform: perspective(800px) rotateY(20deg) rotateX(-12deg) translateZ(40px) translateY(-20px) scale(1.1);
    }
  }

  .tp-imagine-subtitle {
    text-align: center;
    font-size: 22px;
    color: #5b5fcf;
    margin: 0 0 40px;
    font-weight: 600;
  }

  .tp-imagine-list {
    display: grid;
    gap: 30px;
    position: relative;
    z-index: 2;
  }

  .tp-imagine-item {
    display: flex;
    align-items: flex-start;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 248, 255, 0.98) 45%, rgba(249, 242, 255, 0.95) 100%);
    border-radius: 24px;
    border: 1px solid rgba(99, 102, 241, 0.18);
    box-shadow: 
      0 14px 34px rgba(51, 65, 85, 0.11),
      0 0 0 1px rgba(255, 255, 255, 0.85) inset,
      0 0 40px rgba(99, 102, 241, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }

  .tp-imagine-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4f46e5 0%, #8b5cf6 50%, #ec4899 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 0 0 18px rgba(99, 102, 241, 0.4);
  }

  .tp-imagine-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.16) 0%, transparent 72%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .tp-imagine-item:hover {
    transform: translateX(12px) translateY(-8px) scale(1.02);
    box-shadow: 
      0 22px 48px rgba(76, 88, 130, 0.2),
      0 0 0 1px rgba(99, 102, 241, 0.26) inset,
      0 0 80px rgba(99, 102, 241, 0.18),
      0 0 120px rgba(139, 92, 246, 0.12);
    border-color: rgba(99, 102, 241, 0.38);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(238, 246, 255, 0.98) 50%, rgba(248, 238, 255, 0.95) 100%);
  }

  .tp-imagine-item:hover::before {
    opacity: 1;
    width: 5px;
  }

  .tp-imagine-item:hover::after {
    opacity: 1;
  }

  .tp-imagine-item-main {
    padding: 36px 44px;
  }

  .tp-imagine-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .tp-imagine-nested-list {
    display: grid;
    gap: 18px;
    margin-top: 20px;
    padding-left: 30px;
    border-left: 2px solid rgba(99, 102, 241, 0.2);
    position: relative;
  }

  .tp-imagine-nested-list::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.35) 50%, transparent 100%);
    animation: pulseGlow 2s ease-in-out infinite;
  }

  @keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
  }

  .tp-imagine-item-nested {
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(246, 250, 255, 0.95) 0%, rgba(250, 245, 255, 0.95) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: 
      0 8px 24px rgba(71, 85, 105, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.9) inset,
      0 0 30px rgba(99, 102, 241, 0.08);
  }

  .tp-imagine-item-nested:hover {
    transform: translateX(8px) translateY(-4px) scale(1.01);
    box-shadow: 
      0 14px 32px rgba(71, 85, 105, 0.2),
      0 0 0 1px rgba(99, 102, 241, 0.24) inset,
      0 0 55px rgba(99, 102, 241, 0.16);
  }

  .tp-imagine-item-icon {
    flex-shrink: 0;
    margin-right: 28px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 0%, #eef2ff 48%, #fdf2f8 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow:
      0 12px 24px rgba(99, 102, 241, 0.16),
      inset 0 2px 0 rgba(255, 255, 255, 0.95),
      inset 0 -10px 16px rgba(99, 102, 241, 0.1);
  }

  .tp-imagine-item-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 14px;
    width: 42px;
    height: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    filter: blur(1px);
    pointer-events: none;
  }

  .tp-imagine-item-nested .tp-imagine-item-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    box-shadow:
      0 8px 18px rgba(99, 102, 241, 0.14),
      inset 0 2px 0 rgba(255, 255, 255, 0.92),
      inset 0 -8px 12px rgba(99, 102, 241, 0.08);
  }

  .tp-3d-icon {
    font-size: 48px;
    display: inline-block;
    transform: perspective(700px) rotateY(15deg) rotateX(-10deg) translateZ(20px);
    filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.26))
            drop-shadow(0 0 30px rgba(139, 92, 246, 0.2))
            drop-shadow(0 0 46px rgba(236, 72, 153, 0.14));
    animation: icon3dFloat 4s ease-in-out infinite;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 0 12px rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
  }

  .tp-imagine-item-nested .tp-3d-icon {
    font-size: 36px;
    transform: perspective(600px) rotateY(10deg) rotateX(-8deg) translateZ(15px);
  }

  @keyframes icon3dFloat {
    0%, 100% { 
      transform: perspective(700px) rotateY(15deg) rotateX(-10deg) translateZ(20px) translateY(0) rotateZ(0deg);
    }
    25% { 
      transform: perspective(700px) rotateY(18deg) rotateX(-8deg) translateZ(25px) translateY(-8px) rotateZ(2deg);
    }
    50% { 
      transform: perspective(700px) rotateY(12deg) rotateX(-12deg) translateZ(30px) translateY(-12px) rotateZ(-2deg);
    }
    75% { 
      transform: perspective(700px) rotateY(17deg) rotateX(-9deg) translateZ(25px) translateY(-8px) rotateZ(1deg);
    }
  }

  .tp-imagine-item:hover .tp-3d-icon {
    transform: perspective(700px) rotateY(20deg) rotateX(-8deg) translateZ(35px) scale(1.15);
    filter: drop-shadow(0 14px 30px rgba(99, 102, 241, 0.35))
            drop-shadow(0 0 48px rgba(139, 92, 246, 0.3))
            drop-shadow(0 0 64px rgba(236, 72, 153, 0.2));
  }

  .tp-imagine-item-text {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }

  .tp-imagine-item-text strong {
    background: linear-gradient(135deg, #312e81 0%, #6d28d9 45%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 8px 18px rgba(124, 58, 237, 0.18);
  }

  .tp-imagine-item-nested .tp-imagine-item-text {
    font-size: 22px;
    color: #334155;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .tp-value-reveal {
      padding: 60px 16px;
    }

    .tp-value-stack,
    .tp-imagine-section {
      padding: 50px 24px;
      border-radius: 24px;
    }

    .tp-value-stack-title,
    .tp-imagine-title {
      font-size: 32px;
      flex-direction: column;
      gap: 15px;
      margin-bottom: 40px;
    }

    .tp-value-icon-3d,
    .tp-imagine-icon-3d {
      font-size: 40px;
    }

    .tp-value-feature-card,
    .tp-imagine-item {
      padding: 24px 20px;
      flex-direction: column;
      align-items: flex-start;
    }

    .tp-imagine-item-main {
      padding: 28px 24px;
    }

    .tp-imagine-item-content {
      width: 100%;
      gap: 16px;
    }

    .tp-imagine-nested-list {
      padding-left: 20px;
      margin-top: 16px;
      gap: 14px;
    }

    .tp-imagine-item-nested {
      padding: 20px 18px;
    }

    .tp-value-feature-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      width: 100%;
    }

    .tp-value-feature-text {
      width: 100%;
    }

    .tp-value-feature-icon,
    .tp-imagine-item-icon {
      margin-right: 0;
      margin-bottom: 16px;
    }

    .tp-imagine-item-nested .tp-imagine-item-icon {
      margin-right: 0;
      margin-bottom: 12px;
    }

    .tp-3d-icon {
      font-size: 36px;
    }

    .tp-imagine-item-nested .tp-3d-icon {
      font-size: 28px;
    }

    .tp-value-feature-title {
      font-size: 22px;
      margin-bottom: 6px;
    }

    .tp-value-feature-description {
      font-size: 14px;
    }

    .tp-imagine-item-text {
      font-size: 20px;
    }

    .tp-imagine-item-nested .tp-imagine-item-text {
      font-size: 18px;
    }

    .tp-value-feature-price {
      font-size: 22px;
      align-self: flex-start;
      padding: 10px 20px;
    }

    .tp-value-summary {
      flex-direction: column;
      gap: 24px;
      padding: 32px 24px;
    }

    .tp-value-total-label,
    .tp-value-your-price-label {
      font-size: 16px;
    }

    .tp-value-total-amount {
      font-size: 36px;
    }

    .tp-value-your-price-amount {
      font-size: 32px;
    }

    .tp-value-your-price-note {
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .tp-value-stack-title,
    .tp-imagine-title {
      font-size: 26px;
    }

    .tp-value-stack-subtitle {
      font-size: 18px;
    }

    .tp-imagine-subtitle {
      font-size: 20px;
    }

    .tp-value-feature-title,
    .tp-imagine-item-text {
      font-size: 18px;
    }

    .tp-value-feature-price {
      font-size: 18px;
    }

    .tp-value-total-amount,
    .tp-value-your-price-amount {
      font-size: 24px;
    }
  }
 
<!-- ===================== HOW YOU CAN MAKE REAL MONEY SECTION ===================== -->


 
  /* Space Grotesk everywhere for this section */
  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

  :root {
    --tp-body-size: 15px;
    --tp-head-size: 20px;
  }

  .tp-income {
    padding: 90px 16px 100px;
    background: radial-gradient(circle at top, #ffe9ff 0, #fdf7ff 35%, #f3fbff 75%, #ecfff9 100%);
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .tp-income-inner {
    max-width: 1160px;
    margin: 0 auto;
    color: #111;
    font-size: var(--tp-body-size);
  }

  /* Top heading block */
  .tp-income-head {
    text-align: center;
    margin-bottom: 52px;
  }

  .tp-income-highlight {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffe600, #ffef8a);
    font-weight: 800;
    font-size: var(--tp-head-size);
  }

.tp-income-eyebrow {
    margin: 10px 0 14px;
    color: #555;
    font-size: var(--tp-body-size);
    font-size: 20px;
}

  .tp-income-lead {
    margin: 0 0 12px;
    line-height: 1.6;
    font-size: var(--tp-body-size);
  }

  .tp-income-lead em {
    font-style: italic;
  }
.tp-income-intro {
    margin: 0;
    font-size: var(--tp-body-size);
    font-weight: 500;
    font-size: 20px;
    margin: 41px 0 0;
}

  /* Grid */
  .tp-income-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .money-card {
    position: relative;
    padding: 20px 22px 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  /* Soft gradient strip in the corner */
  .money-card::before {
    content: "";
    position: absolute;
    inset: -40px -40px auto auto;
    background: radial-gradient(circle at top right, rgba(255, 91, 165, 0.35), transparent 60%);
    opacity: 0.75;
    pointer-events: none;
  }

  /* Color variations per card */
  .money-card-2::before { background: radial-gradient(circle at top right, rgba(255, 132, 91, 0.35), transparent 60%); }
  .money-card-3::before { background: radial-gradient(circle at top right, rgba(255, 208, 0, 0.35), transparent 60%); }
  .money-card-4::before { background: radial-gradient(circle at top right, rgba(0, 193, 255, 0.35), transparent 60%); }
  .money-card-5::before { background: radial-gradient(circle at top right, rgba(123, 104, 238, 0.35), transparent 60%); }
  .money-card-6::before { background: radial-gradient(circle at top right, rgba(0, 214, 170, 0.35), transparent 60%); }
  .money-card-7::before { background: radial-gradient(circle at top right, rgba(255, 145, 0, 0.35), transparent 60%); }
  .money-card-8::before { background: radial-gradient(circle at top right, rgba(0, 132, 255, 0.35), transparent 60%); }
  .money-card-9::before { background: radial-gradient(circle at top right, rgba(234, 95, 172, 0.35), transparent 60%); }
  .money-card-10::before { background: radial-gradient(circle at top right, rgba(0, 200, 120, 0.35), transparent 60%); }

  .money-card-header {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }

  .money-card-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .money-card-icon {
    font-size: 20px;
  }

  .money-card-title {
    margin: 0;
    font-size: var(--tp-head-size);
    line-height: 1.35;
    font-weight: 700;
  }

.money-card-text {
    margin: 0 0 4px;
    font-size: var(--tp-body-size);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

  .money-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
    transition: all 0.2s ease;
  }

  /* Bottom pink callout */
  .tp-income-bottom {
    margin-top: 46px;
    text-align: center;
  }

  .tp-income-bottom-line1 {
    margin: 0 0 6px;
    font-size: var(--tp-body-size);
  }

  .tp-income-bottom-line1 span {
    color: #ff2b8b;
    font-weight: 600;
  }

.tp-income-bottom-line2 {
    margin: 0;
    font-size: var(--tp-head-size);
    font-weight: 700;
    color: #ff2b8b;
    box-shadow: 0 0 10px 1px #ddd;
    margin: 0 auto;
    display: table;
    padding: 14px 22px;
    background: #fff;
}

  /* Responsive */
  @media (max-width: 900px) {
    .tp-income {
      padding: 70px 16px 80px;
    }
    .tp-income-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
 
<!-- ===================== MID CTA + COST TEASER SECTION ===================== -->


 
  /* Use once globally; if you already imported Space Grotesk, you can remove this */
  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

  :root {
    --tp-body-size: 15px;
    --tp-head-size: 20px;
  }

  .tp-mid-cta {
    padding: 80px 16px 70px;
    background: #ffffff;
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .tp-mid-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    font-size: var(--tp-body-size);
    color: #111111;
  }

  /* CTA button */
  .tp-mid-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 72px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff7a3c 0%, #ff3f7c 40%, #b027ff 100%);
    box-shadow: 0 18px 40px rgba(255, 67, 132, 0.35);
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  }

  .tp-mid-btn-line1 {
    font-size: var(--tp-head-size);
  }

  .tp-mid-btn-line2 {
    font-size: var(--tp-head-size);
    margin-top: 4px;
  }

  .tp-mid-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(255, 67, 132, 0.45);
    filter: brightness(1.05);
  }

  /* Subline */
  .tp-mid-subline {
    margin: 0 0 16px;
    font-size: var(--tp-body-size);
    color: #222222;
  }

  /* Payment row */
  .tp-mid-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }

  .tp-mid-trust img {
    height: 40px;
    object-fit: contain;
  }

  /* Benefit headline */
  .tp-mid-benefit {
    margin: 0 0 34px;
    font-size: var(--tp-head-size);
    font-weight: 700;
    line-height: 1.5;
  }

  /* Soft divider */
  .tp-mid-divider {
    width: 120px;
    height: 3px;
    margin: 0 auto 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff2b8b, #ff824d);
    opacity: 0.8;
  }

  /* Teaser line */
  .tp-mid-teaser {
    margin: 0 0 10px;
    font-size: var(--tp-body-size);
    color: #111111;
  }

  /* Comparison heading */
  .tp-mid-compare {
    margin: 0;
    font-size: var(--tp-head-size);
    font-weight: 800;
    color: #ff2b2b;
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .tp-mid-button {
      width: 100%;
      max-width: 420px;
      padding: 18px 24px;
    }

    .tp-mid-trust img {
      height: 32px;
    }
  }
 

<!-- ===================== PRICE COMPARISON SECTION ===================== -->


 
  /* If already imported globally, you can remove this import */
  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

  :root {
    --tp-body-size: 15px;
    --tp-head-size: 20px;
  }

  .tp-compare {
    padding: 80px 16px 90px;
    background: radial-gradient(circle at top left, #ffe9b3 0, #fff7e6 30%, #eef5ff 70%, #e5f8ff 100%);
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111;
  }

  .tp-compare-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
    font-size: var(--tp-body-size);
  }

  .tp-compare-head {
    margin-bottom: 28px;
  }
.tp-compare-title {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff4f5e, #a347ff);
    -webkit-background-clip: text;
    color: transparent;
    border: 2px solid #ff4f5e;
    margin: 0 auto 13px;
    display: table;
    padding: 12px 12px;
    border-radius: 7px;
}
.tp-compare-subtitle {
    margin: 0;
    font-size: var(--tp-body-size);
    color: #444;
    font-size: 17px;
} 

  .tp-compare-card {
    margin-top: 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    overflow: hidden;
  }

  .tp-compare-table-wrap {
    overflow-x: auto;
  }

  .tp-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 880px;
    text-align: left;
  }

  .tp-compare-table thead {
    background: linear-gradient(90deg, #f5f9ff, #fdfdff);
  }

  .tp-compare-table th,
  .tp-compare-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    font-size: var(--tp-body-size);
  }

  .tp-compare-table th {
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 13px;
  }

  .tp-compare-table tbody tr:nth-child(even):not(.is-best) {
    background: #fafbff;
  }

  .tp-compare-table tbody tr:hover {
    background: #f3f7ff;
  }

  .tp-compare-table td:first-child,
  .tp-compare-table th:first-child {
    width: 52px;
    text-align: center;
  }

  .tool-name {
    display: block;
    font-weight: 600;
  }

  .tool-name.primary {
    color: #0f9b4f;
  }

  .tool-tag {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #eef2ff;
    font-size: 11px;
    color: #4b5aff;
    font-weight: 500;
  }

  .price-main,
  .limit-main {
    display: block;
    font-weight: 500;
  }

  .price-note {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: #6b7280;
  }

  .is-best {
    background: linear-gradient(90deg, #ebfff1, #e9fff9);
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.16);
  }

  .best-col {
    text-align: right;
    white-space: nowrap;
  }

  .best-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* Bottom statement */
.tp-compare-bottom {
    margin: 26px auto 0;
    max-width: 880px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #111;
    box-shadow: 0 0 10px 1px #ddd;
    background: #fff;
    padding: 10px 10px;
    border-radius: 6px;
}

  .tp-compare-bottom span {
    color: #ff2b8b;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .tp-compare {
      padding: 70px 12px 80px;
    }

    .tp-compare-title {
      font-size: 22px;
    }

    .tp-compare-card {
      border-radius: 20px;
    }
  }
 
  
  :root{
    --tp-pink:#ec4899;
    --tp-purple:#8b5cf6;
    --tp-indigo:#4f46e5;
    --tp-emerald:#22c55e;
    --tp-red:#ef4444;
    --tp-text:#0f172a;
  }

  .tp-offer{
    padding:60px 16px 60px;
    font-family:"Nunito", sans-serif;
    color:var(--tp-text);
    background:
      radial-gradient(circle at 0 0,rgba(236,72,153,.16),transparent 55%),
      radial-gradient(circle at 100% 0,rgba(56,189,248,.16),transparent 55%),
      radial-gradient(circle at 50% 100%,rgba(129,140,248,.22),transparent 55%),
      #f9fafb;
  }

  .tp-offer-inner{
    max-width:1180px;
    margin:0 auto;
  }

  .tp-offer-headline{
    text-align:center;
    margin-bottom:34px;
  }
  .tp-offer-headline h2{
    font-size:clamp(26px,3vw,38px);
    font-weight:800;
    letter-spacing:.03em;
    color:#111827;
    margin-bottom:6px;
  }
  .tp-offer-headline h2 span {
    display: block;
    background: linear-gradient(120deg, var(--tp-pink), var(--tp-purple), var(--tp-indigo));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 auto;
    display: table;
    border-bottom: 4px solid #ec4899;
}
.tp-offer-headline p {
    font-size: 21px;
    color: #6b7280;
    margin-top: 18px;
}

  /* MAIN CARD */
  .tp-offer-card{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) minmax(0,1.1fr);
    gap:32px;
    padding:22px;
    border-radius:26px;
    background:
      radial-gradient(circle at 0 0,rgba(236,72,153,.12),transparent 60%),
      radial-gradient(circle at 100% 0,rgba(14,165,233,.12),transparent 60%),
      #ffffff;
    box-shadow:0 28px 80px rgba(15,23,42,.12);
    border:1px solid rgba(148,163,184,.35);
  }

  /* LEFT LIST */
  .tp-offer-left{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .tp-offer-row{
    display:flex;
    gap:12px;
    padding:12px 12px 12px 10px;
    border-radius:18px;
    background:rgba(248,250,252,.9);
    border:1px solid rgba(209,213,219,.8);
    box-shadow:0 8px 18px rgba(15,23,42,.04);
  }

  .tp-offer-icon{
    width:26px;
    height:26px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:14px;
    font-weight:800;
    color:white;
  }
  .tp-offer-icon.positive{
    background:radial-gradient(circle at 30% 20%,#bbf7d0,#22c55e);
    box-shadow:0 0 0 3px rgba(34,197,94,.25);
  }
  .tp-offer-icon.negative{
    background:radial-gradient(circle at 30% 20%,#fee2e2,#ef4444);
    box-shadow:0 0 0 3px rgba(239,68,68,.25);
  }

  .tp-offer-copy h3{
    font-size:15px;
    font-weight:700;
    margin-bottom:4px;
    color:#111827;
  }
  .tp-offer-copy p{
    font-size:13px;
    line-height:1.6;
    color:#4b5563;
  }

  /* RIGHT MOCKUP */
  .tp-offer-right{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .tp-offer-mockup-wrap{
    position:relative;
    width:100%;
    max-width:420px;
    aspect-ratio:3/4;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .tp-offer-glow{
    position:absolute;
    inset:8%;
    border-radius:32px;
    background:radial-gradient(circle at 50% 10%,rgba(251,191,36,.85),transparent 55%),
               radial-gradient(circle at 50% 60%,rgba(236,72,153,.8),transparent 70%);
    filter:blur(3px);
    opacity:.95;
  }
  .tp-offer-mockup{
    position:relative;
    width:100%;
    height:100%;
    object-fit:contain;
  }

  .tp-offer-badge{
    position:absolute;
    bottom:14px;
    left:50%;
    transform:translateX(-50%);
    padding:7px 16px;
    border-radius:999px;
    background:rgba(15,23,42,.92);
    border:1px solid rgba(248,250,252,.75);
    font-size:11px;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:#f9fafb;
    display:flex;
    align-items:center;
    gap:6px;
    box-shadow:0 12px 25px rgba(15,23,42,.6);
  }
  .tp-offer-badge::before{
    content:"⏳";
    font-size:13px;
  }

  /* CTA STRIP */
  .tp-offer-cta{
    margin-top:34px;
    text-align:center;
    padding:18px 16px 8px;
  }
  .tp-offer-cta h3{
    font-size:clamp(19px,2.2vw,28px);
    font-weight:800;
    margin-bottom:10px;
    color:#111827;
  }
  .tp-offer-cta h3 span:nth-of-type(1){
    color:var(--tp-pink);
  }
  .tp-offer-cta h3 span:nth-of-type(2){
    background:linear-gradient(120deg,var(--tp-purple),var(--tp-indigo));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
.tp-offer-cta p {
    max-width: 930px;
    margin: 0 auto;
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

  /* RESPONSIVE */
  @media (max-width:960px){
    .tp-offer-card{
      grid-template-columns:1fr;
      padding:18px;
    }
    .tp-offer-right{
      order:-1;
    }
  }
  @media (max-width:640px){
    .tp-offer{
      padding:70px 14px 80px;
    }
    .tp-offer-row{
      padding:10px 10px 11px;
    }
  }
  

<!-- ================== TOKPRIMEAI SHOWCASE SECTION ================== -->
  
  :root{
    --pink-main:#ff1f8c;
    --highlight-yellow:#fff64b;
  }

  .tp-showcase{
    margin:40px auto 80px;
    padding:0 20px;
    text-align:center;
    position:relative;
  }

  .tp-showcase__inner{
    position:relative;
    z-index:1;
  }

  .tp-showcase__pre{
    font-size:15px;
    font-weight:600;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:8px;
  }

  .tp-showcase__title{
    font-size:clamp(26px,3vw,32px);
    line-height:1.35;
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:24px;
    color:#0f172a;
  }
  .tp-showcase__title span{
    color:var(--pink-main);
  }

  /* Collage frame */
   .tp-showcase__frame{
    position:relative;
    max-width:980px;
    margin:0 auto 30px;
    border-radius:28px;
    padding:15px;
    background:
      radial-gradient(circle at 0 0,#f97316,transparent 55%),
      radial-gradient(circle at 100% 0,#22c55e,transparent 50%),
      radial-gradient(circle at 50% 100%,#6366f1,transparent 55%);
    box-shadow:
      0 26px 80px rgba(15,23,42,.55),
      0 0 0 1px rgba(255,255,255,.4);
    overflow:hidden;
  }

  /* subtle animated outer glow */
  .tp-showcase__border{
    position:absolute;
    inset:-80%;
    background:conic-gradient(
      from 140deg,
      #f97316,
      #fb7185,
      #a855f7,
      #22c55e,
      #38bdf8,
      #f97316
    );
    opacity:.32;
    filter:blur(40px);
    animation:tp-orbit 12s linear infinite;
    pointer-events:none;
  }
  @keyframes tp-orbit{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
  }

  /* collage image background */
  .tp-showcase__image{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    aspect-ratio:16 / 7;
  }

  /* center badge */  

  .tp-showcase__badge-top{
    font-size:10px;
    letter-spacing:.18em;
    text-transform:uppercase;
    opacity:.8;
  }
  .tp-showcase__badge-main{
    font-size:18px;
    font-weight:800;
    letter-spacing:.06em;
  }
  .tp-showcase__badge-main span{
    margin-left:4px;
    padding:1px 6px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--pink-main),var(--highlight-yellow));
    color:#111827;
    font-size:11px;
    font-weight:800;
  }
  .tp-showcase__badge-sub{
    font-size:11px;
    opacity:.9;
  }

  /* diagonal light sweep */
  .tp-showcase__shine{
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.55) 50%,rgba(255,255,255,0) 100%);
    transform:translateX(-120%);
    mix-blend-mode:screen;
    animation:tp-shine 7s ease-in-out infinite;
    pointer-events:none;
  }
  @keyframes tp-shine{
    0%{transform:translateX(-130%);}
    18%{transform:translateX(130%);}
    100%{transform:translateX(130%);}
  }

  /* Text below */
  .tp-showcase__bigline{
    max-width:980px;
    margin:6px auto 6px;
    font-size:16px;
    line-height:1.7;
    font-weight:600;
    color:#111827;
  }
  .tp-showcase__bigline span{
    color:var(--pink-main);
  }

  .tp-showcase__smallline{
    font-size:14px;
    color:#6b7280;
    line-height:1.7;
  }
  .tp-showcase__smallline span{
    font-weight:700;
    color:#111827;
  }

  /* responsive tweaks */
  @media (max-width:768px){
    .tp-showcase__frame{
      border-radius:22px;
      padding:4px;
    }
    .tp-showcase__image{
      aspect-ratio:16 / 9;
    }
    .tp-showcase__badge{
      inset:auto 50% 12px;
      padding:8px 14px 9px;
    }
    .tp-showcase__badge-main{
      font-size:15px;
    }
    .tp-showcase__bigline{
      font-size:15px;
    }
  }
  @media (max-width:480px){
    .tp-showcase{
      margin-top:30px;
    }
    .tp-showcase__title{
      font-size:22px;
    }
    .tp-showcase__badge-sub{
      display:none;
    }
  }
  


<!-- ===================== 30-DAY GUARANTEE SECTION ===================== -->


  
  /* Import once globally if not already done */
  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

  :root {
    --tp-body-size: 15px;
    --tp-head-size: 20px;
  }

  .tp-guarantee {
    position: relative;
    padding: 90px 16px 90px;
    background-color: #020617; /* deep slate */
    background-image:
      linear-gradient(0deg, rgba(148,163,184,0.12) 1px, transparent 1px),
      linear-gradient(90deg, rgba(148,163,184,0.12) 1px, transparent 1px);
    background-size: 80px 80px;
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", sans-serif;
    color: #e5e7eb;
    overflow: hidden;
  }

  .tp-guarantee-overlay {
    position: absolute;
    inset: -30%;
    background:
      radial-gradient(circle at top left, rgba(56,189,248,0.30), transparent 55%),
      radial-gradient(circle at bottom right, rgba(244,63,94,0.25), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
  }

  .tp-guarantee-inner {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
    z-index: 1;
  }

  /* LEFT COPY */
  .tp-guarantee-copy {
    text-align: left;
    font-size: var(--tp-body-size);
  }

  .tp-guarantee-kicker {
    margin: 0 0 10px;
    font-size: var(--tp-head-size);
    font-weight: 700;
    color: #f9fafb;
  }

  .tp-guarantee-title {
    margin: 0 0 20px;
    font-size: 26px; /* hero within this section */
    line-height: 1.25;
    font-weight: 800;
    background: linear-gradient(90deg, #fb7185, #f9a8d4);
    -webkit-background-clip: text;
    color: transparent;
  }

  .tp-guarantee-text p {
    margin: 0 0 6px;
    font-size: var(--tp-body-size);
    line-height: 1.7;
  }

  .tp-guarantee-highlight {
    margin-top: 14px;
    font-weight: 500;
  }

  .tp-guarantee-highlight span {
    color: #fbbf24;
    font-weight: 700;
  }

  .tp-guarantee-bold {
    margin-top: 12px;
    font-weight: 700;
    font-size: var(--tp-body-size);
  }

  .tp-guarantee-footer {
    margin-top: 18px;
    font-size: var(--tp-head-size);
    font-weight: 500;
  }

  .tp-guarantee-footer span {
    color: #fb7185;
    font-weight: 700;
  }

  /* RIGHT VISUALS */
  .tp-guarantee-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tp-guarantee-mockup {
    position: relative;
    max-width: 420px;
    width: 100%;
    transform: translateY(4px);
  }

  .guarantee-product {
    width: 100%;
    display: block;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  }

  .guarantee-badge {
    position: absolute;
    right: -14%;
    top: 5%;
    width: 46%;
    max-width: 220px;
    filter: drop-shadow(0 22px 60px rgba(0,0,0,0.8));
  }

  .tp-guarantee-mockup::before {
    content: "";
    position: absolute;
    inset: auto 8% -18px 8%;
    height: 40px;
    background: radial-gradient(circle at 50% 0,
                rgba(15,23,42,0.65), transparent 70%);
    opacity: 0.9;
    z-index: -1;
  }

  /* Hover micro animation */
  .tp-guarantee-mockup:hover {
    transform: translateY(0);
    transition: transform 0.25s ease;
  }

  /* Responsive */
  @media (max-width: 960px) {
    .tp-guarantee-inner {
      grid-template-columns: minmax(0, 1fr);
      text-align: center;
    }

    .tp-guarantee-copy {
      text-align: center;
    }

    .tp-guarantee-visual {
      order: -1;
    }

    .tp-guarantee-mockup {
      max-width: 360px;
      margin: 0 auto 10px;
    }

    .guarantee-badge {
      right: -4%;
      top: -4%;
    }
  }

  @media (max-width: 640px) {
    .tp-guarantee {
      padding: 70px 16px 70px;
    }

    .tp-guarantee-title {
      font-size: 22px;
    }

    .tp-guarantee-footer {
      font-size: 18px;
    }
  }
  
    
    :root{
      --tp-bg: #ffffff;
      --tp-border: #f02fc2;
      --tp-border2: #6094ea;
      --tp-accent: #ff3b8d;
      --tp-accent-soft: rgba(255,59,141,.1);
      --tp-text-main:#101118;
      --tp-text-muted:#6b7280;
      --tp-success:#14b8a6;
      --tp-radius-xl: 28px;
      --tp-radius-lg: 22px;
      --tp-shadow-soft: 0 28px 70px rgba(15,23,42,.12);
      --tp-shadow-hover: 0 32px 90px rgba(15,23,42,.22);
      --tp-gradient: linear-gradient(135deg,#ff8a00,#ff3b8d,#7c3aed);
    }

    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
    }

    body{
      font-family:"Nunito", sans-serif;
      background:#ffffff;
      color:var(--tp-text-main);
      -webkit-font-smoothing:antialiased;
    }

    .tp-page-wrap{
      min-height:100vh;
      display:flex;
      justify-content:center;
      padding:72px 16px 120px;
      background:
        radial-gradient(circle at top left,rgba(255,138,0,.06),transparent 55%),
        radial-gradient(circle at bottom right,rgba(96,148,234,.09),transparent 55%);
    }

    .tp-pricing-shell{
      width:100%;
      max-width:900px;
      margin-inline:auto;
    }

    /* ---------- Headline ---------- */

.tp-top-note {
    text-align: center;
    font-size: 19px;
    text-transform: capitalize;
    letter-spacing: 0;
    color: var(--tp-accent);
    margin-bottom: 10px;
    font-weight: 600;
}

    .tp-main-headline{
      text-align:center;
      font-size:48px;
      line-height:1.15;
      font-weight:700;
      margin-bottom:10px;
    }
.tp-main-headline span {
    background: var(--tp-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border: 2px solid #b83bc1;
    padding: 0 11px;
    border-radius: 11px;
}

    .tp-sub-headline{
      text-align:center;
      font-size:18px;
      color:var(--tp-text-muted);
      margin-bottom:26px;
    }

    /* ---------- Main card ---------- */

    .tp-pricing-card{
      position:relative;
      background:rgba(255,255,255,.96);
      border-radius:var(--tp-radius-xl);
      padding:26px 26px 30px;
      box-shadow:var(--tp-shadow-soft);
      border:1px solid transparent;
      background-image:
        linear-gradient(#ffffff,#ffffff),
        linear-gradient(135deg,var(--tp-border),var(--tp-border2));
      background-origin:border-box;
      background-clip:padding-box,border-box;
      overflow:hidden;
    }

    .tp-pricing-card::before{
      content:"";
      position:absolute;
      inset:-120px;
      background:
        radial-gradient(circle at 10% 0,rgba(255,138,0,.12),transparent 55%),
        radial-gradient(circle at 90% 100%,rgba(96,148,234,.18),transparent 55%);
      opacity:.6;
      pointer-events:none;
      z-index:-1;
    }

    .tp-ribbon{
      position:absolute;
      top:4px;
      right:16px;
      padding:6px 14px;
      border-radius:999px;
      font-size:11px;
      font-weight:600;
      letter-spacing:.14em;
      text-transform:uppercase;
      color:#fff;
      background:var(--tp-gradient);
      box-shadow:0 12px 30px rgba(124,58,237,.45);
    }

    .tp-pricing-header{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:18px;
      margin-bottom:22px;
    }

    .tp-plan-title{
      font-size:22px;
      font-weight:700;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .tp-plan-stars{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:2px;
      font-size:16px;
    }

    .tp-plan-tag{
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:.16em;
      color:var(--tp-text-muted);
    }

    .tp-price-wrap{
      margin-left:auto;
      text-align:right;
    }

    .tp-price-main{
      font-size:34px;
      font-weight:700;
    }
    .tp-price-main span{
      font-size:22px;
      font-weight:500;
      color:var(--tp-text-muted);
      text-decoration:line-through;
      margin-right:8px;
    }

    .tp-price-sub{
      font-size:16px;
      color:var(--tp-text-muted);
    }

    /* ---------- CTA ---------- */

  .tp-cta-wrap {
    margin: 12px 0 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    flex-direction: column;
}

  .tp-cta-main {
    /* flex: 1 1 220px; */
    padding: 12px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: var(--tp-gradient);
    box-shadow: 0 15px 40px rgba(124,58,237,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .18s ease-out;
}

    .tp-cta-main span.small{
      font-size:14px;
      font-weight:500;
      opacity:.85;
      text-transform:uppercase;
      letter-spacing:.16em;
    }

    .tp-cta-main:hover{
      transform:translateY(-1px) scale(1.02);
      box-shadow:0 21px 58px rgba(124,58,237,.65);
    }

 .tp-cta-note {
    /* flex: 1 1 160px; */
    font-size: 17px;
    color: var(--tp-text-muted);
    line-height: 1.4;
    text-align: center;
}

    .tp-cta-note strong{
      color:var(--tp-success);
      font-weight:600;
    }

    /* ---------- Coupon bar ---------- */

  .tp-coupon-bar {
    margin: 0 0 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(15,23,42,.02);
    border: 1px dashed rgba(148,163,184,.8);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
}

    .tp-coupon-pill{
      padding:4px 10px;
      border-radius:999px;
      background:rgba(56,189,248,.16);
      color:#0369a1;
      font-weight:600;
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:.14em;
    }

    .tp-coupon-code{
      font-weight:600;
      font-size:12px;
      padding:3px 9px;
      border-radius:999px;
      background:#0f172a;
      color:#e5e7eb;
      margin-left:4px;
    }

    /* ---------- Features list ---------- */

    .tp-pricing-features{
      display:grid;
      grid-template-columns:1fr; /* SINGLE COLUMN */
      gap:14px;
      margin:20px 0 24px;
      text-align:left;
    }

    .tp-feature-card{
      position:relative;
      padding:13px 14px 12px 14px;
      border-radius:20px;
      background:rgba(255,255,255,.96);
      border:1px solid rgba(226,232,240,.9);
      box-shadow:0 10px 25px rgba(15,23,42,.04);
      display:flex;
      gap:12px;
      align-items:flex-start;
      overflow:hidden;
      transition:
        box-shadow .18s ease-out,
        transform .18s ease-out,
        border-color .18s ease-out,
        background .18s ease-out;
    }

    .tp-feature-card::after{
      content:"";
      position:absolute;
      inset:0;
      opacity:0;
      background:radial-gradient(circle at top left,rgba(255,138,0,.14),transparent 60%);
      pointer-events:none;
      transition:opacity .18s ease-out;
    }

    .tp-feature-icon{
      position:relative;
      flex:0 0 40px;
      height:40px;
      border-radius:18px;
      background:radial-gradient(circle at 15% 0,rgba(255,255,255,.9),transparent 50%),var(--tp-gradient);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 25px rgba(124,58,237,.45);
      color:#fff;
      font-size:20px;
    }

    .tp-feature-text{
      position:relative;
      z-index:1;
    }

    .tp-feature-title{
      font-size:21px;
      font-weight:600;
      margin-bottom:3px;
    }
    .tp-feature-bullets li {
    margin: 3px 0;
}
.tp-feature-bullets {
    list-style: none;
    font-size: 17px;
    color:#000;
    line-height: 1.45;
    padding: 0;
}

    .tp-feature-bullets li::before{
      content:"•";
      margin-right:4px;
      color:var(--tp-accent);
    }

    /* Hover glow */
    .tp-feature-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--tp-shadow-hover);
      border-color:rgba(251,113,133,.9);
      background:linear-gradient(135deg,#ffffff,rgba(254,242,242,.92));
    }
    .tp-feature-card:hover::after{
      opacity:.9;
    }

    /* ---------- Guarantee / footer ---------- */

    .tp-footer-row{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      align-items:center;
      justify-content:space-between;
      font-size:11px;
      color:var(--tp-text-muted);
    }

    .tp-guarantee{
      display:flex;
      align-items:center;
      gap:8px;
    }

    .tp-guarantee span.badge{
      padding:5px 10px;
      border-radius:999px;
      background:rgba(22,163,74,.08);
      color:#15803d;
      font-size:10px;
      font-weight:600;
      text-transform:uppercase;
      letter-spacing:.16em;
    }

.tp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    width: 100%;
}
.tp-badge-pill {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(15,23,42,.03);
    border: 1px solid rgba(226,232,240,.9);
    font-size: 16px;
}

    /* ---------- Reveal animation on scroll ---------- */

.reveal {
    opacity: 1;
    transform: translateY(24px);
    transition: opacity .55s cubic-bezier(.19,1,.22,1),
                 transform .55s cubic-bezier(.19,1,.22,1);
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}
    .reveal.visible{
      opacity:1;
      transform:translateY(0);
    }

    /* responsive tweaks */
    @media (max-width:640px){
      .tp-pricing-card{
        padding:20px 18px 22px;
      }
      .tp-pricing-header{
        flex-direction:column;
        align-items:flex-start;
      }
      .tp-price-wrap{
        text-align:left;
        margin-left:0;
      }
      .tp-cta-wrap{
        flex-direction:column;
        align-items:stretch;
      }
      .tp-footer-row{
        flex-direction:column;
        align-items:flex-start;
      }
      .tp-badges{
        justify-content:flex-start;
      }
    }
    
    
  /* Import once globally if not already done */
  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

  :root {
    --tp-body-size: 15px;
    --tp-head-size: 20px;
  }

  .tp-guarantee {
    position: relative;
    padding: 90px 16px 90px;
    background-color: #020617; /* deep slate */
    background-image:
      linear-gradient(0deg, rgba(148,163,184,0.12) 1px, transparent 1px),
      linear-gradient(90deg, rgba(148,163,184,0.12) 1px, transparent 1px);
    background-size: 80px 80px;
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", sans-serif;
    color: #e5e7eb;
    overflow: hidden;
  }

  .tp-guarantee-overlay {
    position: absolute;
    inset: -30%;
    background:
      radial-gradient(circle at top left, rgba(56,189,248,0.30), transparent 55%),
      radial-gradient(circle at bottom right, rgba(244,63,94,0.25), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
  }

  .tp-guarantee-inner {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
    z-index: 1;
  }

  /* LEFT COPY */
  .tp-guarantee-copy {
    text-align: left;
    font-size: var(--tp-body-size);
  }

  .tp-guarantee-kicker {
    margin: 0 0 10px;
    font-size: var(--tp-head-size);
    font-weight: 700;
    color: #f9fafb;
  }

  .tp-guarantee-title {
    margin: 0 0 20px;
    font-size: 26px; /* hero within this section */
    line-height: 1.25;
    font-weight: 800;
    background: linear-gradient(90deg, #fb7185, #f9a8d4);
    -webkit-background-clip: text;
    color: transparent;
  }

  .tp-guarantee-text p {
    margin: 0 0 6px;
    font-size: var(--tp-body-size);
    line-height: 1.7;
  }

  .tp-guarantee-highlight {
    margin-top: 14px;
    font-weight: 500;
  }

  .tp-guarantee-highlight span {
    color: #fbbf24;
    font-weight: 700;
  }

  .tp-guarantee-bold {
    margin-top: 12px;
    font-weight: 700;
    font-size: var(--tp-body-size);
  }

  .tp-guarantee-footer {
    margin-top: 18px;
    font-size: var(--tp-head-size);
    font-weight: 500;
  }

  .tp-guarantee-footer span {
    color: #fb7185;
    font-weight: 700;
  }

  /* RIGHT VISUALS */
  .tp-guarantee-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tp-guarantee-mockup {
    position: relative;
    max-width: 420px;
    width: 100%;
    transform: translateY(4px);
  }

  .guarantee-product {
    width: 100%;
    display: block;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  }

  .guarantee-badge {
    position: absolute;
    right: -14%;
    top: 5%;
    width: 46%;
    max-width: 220px;
    filter: drop-shadow(0 22px 60px rgba(0,0,0,0.8));
  }

  .tp-guarantee-mockup::before {
    content: "";
    position: absolute;
    inset: auto 8% -18px 8%;
    height: 40px;
    background: radial-gradient(circle at 50% 0,
                rgba(15,23,42,0.65), transparent 70%);
    opacity: 0.9;
    z-index: -1;
  }

  /* Hover micro animation */
  .tp-guarantee-mockup:hover {
    transform: translateY(0);
    transition: transform 0.25s ease;
  }

  /* Responsive */
  @media (max-width: 960px) {
    .tp-guarantee-inner {
      grid-template-columns: minmax(0, 1fr);
      text-align: center;
    }

    .tp-guarantee-copy {
      text-align: center;
    }

    .tp-guarantee-visual {
      order: -1;
    }

    .tp-guarantee-mockup {
      max-width: 360px;
      margin: 0 auto 10px;
    }

    .guarantee-badge {
      right: -4%;
      top: -4%;
    }
  }

  @media (max-width: 640px) {
    .tp-guarantee {
      padding: 70px 16px 70px;
    }

    .tp-guarantee-title {
      font-size: 22px;
    }

    .tp-guarantee-footer {
      font-size: 18px;
    }
  }
  


<!-- ================== TOKPRIMEAI SHOWCASE SECTION ================== -->
  
  :root{
    --pink-main:#ff1f8c;
    --highlight-yellow:#fff64b;
  }

  .tp-showcase{
    margin:40px auto 30px;
    padding:0 0px;
    text-align:center;
    position:relative;
  }

  .tp-showcase__inner{
    position:relative;
    z-index:1;
  }

  .tp-showcase__pre{
    font-size:15px;
    font-weight:600;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:8px;
  }

  .tp-showcase__title{
    font-size:clamp(26px,3vw,32px);
    line-height:1.35;
    font-weight:800;
    letter-spacing:.02em;
    margin-bottom:24px;
    color:#0f172a;
  }
  .tp-showcase__title span{
    color:var(--pink-main);
  }

  /* Collage frame */
   .tp-showcase__frame{
    position:relative;
    max-width:980px;
    margin:0 auto 30px;
    border-radius:28px;
    padding:15px;
    background:
      radial-gradient(circle at 0 0,#f97316,transparent 55%),
      radial-gradient(circle at 100% 0,#22c55e,transparent 50%),
      radial-gradient(circle at 50% 100%,#6366f1,transparent 55%);
    box-shadow:
      0 26px 80px rgba(15,23,42,.55),
      0 0 0 1px rgba(255,255,255,.4);
    overflow:hidden;
  }

  /* subtle animated outer glow */
  .tp-showcase__border{
    position:absolute;
    inset:-80%;
    background:conic-gradient(
      from 140deg,
      #f97316,
      #fb7185,
      #a855f7,
      #22c55e,
      #38bdf8,
      #f97316
    );
    opacity:.32;
    filter:blur(40px);
    animation:tp-orbit 12s linear infinite;
    pointer-events:none;
  }
  @keyframes tp-orbit{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
  }

  /* collage image background */
  .tp-showcase__image{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    aspect-ratio:16 / 7;
  }

  /* center badge */

  .tp-showcase__badge-top{
    font-size:10px;
    letter-spacing:.18em;
    text-transform:uppercase;
    opacity:.8;
  }
  .tp-showcase__badge-main{
    font-size:18px;
    font-weight:800;
    letter-spacing:.06em;
  }
  .tp-showcase__badge-main span{
    margin-left:4px;
    padding:1px 6px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--pink-main),var(--highlight-yellow));
    color:#111827;
    font-size:11px;
    font-weight:800;
  }
  .tp-showcase__badge-sub{
    font-size:11px;
    opacity:.9;
  }

  /* diagonal light sweep */
  .tp-showcase__shine{
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.55) 50%,rgba(255,255,255,0) 100%);
    transform:translateX(-120%);
    mix-blend-mode:screen;
    animation:tp-shine 7s ease-in-out infinite;
    pointer-events:none;
  }
  @keyframes tp-shine{
    0%{transform:translateX(-130%);}
    18%{transform:translateX(130%);}
    100%{transform:translateX(130%);}
  }

  /* Text below */
  .tp-showcase__bigline{
    max-width:980px;
    margin:6px auto 6px;
    font-size:16px;
    line-height:1.7;
    font-weight:600;
    color:#111827;
  }
  .tp-showcase__bigline span{
    color:var(--pink-main);
  }

  .tp-showcase__smallline{
    font-size:14px;
    color:#6b7280;
    line-height:1.7;
  }
  .tp-showcase__smallline span{
    font-weight:700;
    color:#111827;
  }

  /* responsive tweaks */
  @media (max-width:768px){
    .tp-showcase__frame{
      border-radius:22px;
      padding:4px;
    }
    .tp-showcase__image{
      aspect-ratio:16 / 9;
    }
    .tp-showcase__badge{
      inset:auto 50% 12px;
      padding:8px 14px 9px;
    }
    .tp-showcase__badge-main{
      font-size:15px;
    }
    .tp-showcase__bigline{
      font-size:15px;
    }
  }
  @media (max-width:480px){
    .tp-showcase{
      margin-top:30px;
    }
    .tp-showcase__title{
      font-size:22px;
    }
    .tp-showcase__badge-sub{
      display:none;
    }
  }
  




  
  /* Import once globally; remove if already included */
  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

  :root {
    --tp-body-size: 15px;
    --tp-head-size: 20px;
  }

  .tp-strip {
    padding: 40px 16px 50px;
    background: #ffffff;
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", sans-serif;
  }

  .tp-strip-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    font-size: var(--tp-body-size);
    color: #111111;
  }

  .tp-strip-line {
    margin: 0 0 14px;
    font-size: var(--tp-body-size);
    color: #1f2933;
  }

  .tp-strip-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
    flex-wrap: wrap;
  }

  .tp-strip-icons img {
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
  }

  .tp-strip-benefit {
    margin: 0;
    font-size: var(--tp-head-size);
    font-weight: 800;
    line-height: 1.5;

    /* Gradient text like “Coming Soon” */
    background: linear-gradient(90deg, #ff2f92 0%, #8b5cf6 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  @media (max-width: 768px) {
    .tp-strip {
      padding: 32px 12px 40px;
    }

    .tp-strip-icons img {
      height: 34px;
    }
  }
  

  
  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

  :root {
    --tp-body-size: 15px;
    --tp-head-size: 20px;
  }

.tp-faq {
    padding: 30px 16px 60px;
    background: #ffffff;
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", sans-serif;
}

  .tp-faq-inner {
    max-width: 1120px;
    margin: 0 auto;
    font-size: var(--tp-body-size);
    color: #111827;
  }

  .tp-faq-head {
    text-align: center;
    margin-bottom: 32px;
  }

  /* Headings = question size (23px) + 7 = 30px */
  .tp-faq-title {
    margin: 0 0 8px;
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff2f92, #ff6bb0);
    -webkit-background-clip: text;
    color: transparent;
  }

  .tp-faq-subtitle {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #111827;
  }

  /* 2-column grid */
  .tp-faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
  }

  .tp-faq-item {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.04);
    background: #ffffff;
    overflow: hidden;
    transition:
      box-shadow 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease,
      background 0.25s ease;
  }

  /* Glow pulse ring */
  .tp-faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.0);
    transition: opacity 0.25s ease;
  }

  .tp-faq-item.is-open {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow:
      0 0 0 1px rgba(59, 130, 246, 0.45),
      0 20px 55px rgba(59, 130, 246, 0.45);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
  }

  .tp-faq-item.is-open::before {
    opacity: 1;
    animation: faqGlow 1.6s ease-in-out infinite;
  }

  @keyframes faqGlow {
    0% {
      box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.0);
    }
    50% {
      box-shadow: 0 0 0 10px rgba(59, 130, 246, 0.20);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.0);
    }
  }

  .tp-faq-question {
    width: 100%;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 23px; /* 20 + 3 */
    font-weight: 600;
    text-align: left;
    background: #f3f4ff;
    border: none;
    cursor: pointer;
    color: #0369a1;
    position: relative;
    z-index: 1;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  }

  .tp-faq-item:nth-child(odd) .tp-faq-question {
    background: #f9fafb;
  }

  .tp-faq-question:hover {
    background: #e0f2fe;
    color: #0f172a;
    transform: translateY(-1px);
  }

  .tp-faq-item.is-open .tp-faq-question {
    background: linear-gradient(90deg, #e0f2fe, #eff6ff);
    color: #0f172a;
  }

  .tp-faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    background: #ffffff;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .tp-faq-item.is-open .tp-faq-icon {
    background: #0f172a;
    color: #ffffff;
    transform: rotate(180deg) scale(1.05);
  }

  .tp-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background: #ffffff;
    transition: max-height 0.25s ease, padding-top 0.25s ease, padding-bottom 0.25s ease;
    position: relative;
    z-index: 1;
  }

  .tp-faq-item.is-open .tp-faq-answer {
    max-height: 500px;
    padding-top: 10px;
    padding-bottom: 14px;
  }

  .tp-faq-answer p {
    margin: 0 0 6px;
    font-size: var(--tp-body-size);
    line-height: 1.7;
  }

  /* Support line = question (23px) + 3 = 26px */
  .tp-faq-support {
    margin: 34px 0 0;
    text-align: center;
    font-size: 26px;
    color: #111827;
    font-weight: 600;
  }

  .tp-faq-support a {
    color: #2563eb;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    font-weight: 700;
  }

  .tp-faq-support a:hover {
    color: #1d4ed8;
  }

  @media (max-width: 900px) {
    .tp-faq-list {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  @media (max-width: 768px) {
    .tp-faq {
      padding: 70px 12px 80px;
    }

    .tp-faq-title {
      font-size: 26px;
    }

    .tp-faq-subtitle {
      font-size: 24px;
    }
  }
  
  
  /* Font import (remove if you already import Space Grotesk globally) */
  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

  :root {
    --tp-body-size: 15px;
    --tp-head-size: 20px;
  }

  .tp-hero {
    padding: 80px 16px 70px;
    background: radial-gradient(circle at top, #ffe4ff 0, #ffffff 45%, #f7fbff 100%);
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", sans-serif;
    text-align: center;
    color: #050816;
  }

  .tp-hero-inner {
    max-width: 1050px;
    margin: 0 auto;
  }

  /* Brand name */
  .tp-hero-brand {
    display: inline-block;
    margin-bottom: 10px;
    font-size: calc(var(--tp-head-size) + 4px); /* 24px */
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    background: linear-gradient(90deg, #ff2f92, #ff7ae5);
    -webkit-background-clip: text;
    color: transparent;
  }

  /* Yellow strapline pill */
  .tp-hero-strap {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    background: #fff700;
    color: #111827;
    font-size: var(--tp-body-size);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 30px rgba(250, 204, 21, 0.4);
    margin-bottom: 26px;
  }

  /* Main headline */
  .tp-hero-title {
    margin: 0 0 20px;
    font-size: calc(var(--tp-head-size) + 8px); /* 28px */
    line-height: 1.35;
    font-weight: 800;
  }

  .tp-hero-title .accent {
    color: #ff2f92;
  }

  .tp-hero-sub {
    margin: 0;
    font-size: var(--tp-body-size);
    line-height: 1.9;
    color: #111827;
  }

  .tp-hero-sub .accent {
    color: #ff2f92;
    font-weight: 600;
  }

  .tp-hero-break {
    display: none;
  }

  /* Subtle hover “alive” effect on highlight text */
  .tp-hero-title .accent,
  .tp-hero-sub .accent {
    position: relative;
    transition: text-shadow 0.2s ease, transform 0.2s ease;
  }

  .tp-hero-title .accent:hover,
  .tp-hero-sub .accent:hover {
    text-shadow: 0 0 18px rgba(255, 47, 146, 0.5);
    transform: translateY(-1px);
  }

  @media (max-width: 900px) {
    .tp-hero {
      padding: 70px 14px 60px;
    }

    .tp-hero-title {
      font-size: 24px;
    }

    .tp-hero-break {
      display: inline;
    }
  }

  @media (max-width: 640px) {
    .tp-hero-title {
      font-size: 22px;
    }

    .tp-hero-strap {
      font-size: 13px;
      padding: 6px 14px;
    }
  }
  



  
  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

  .tp-footer {
    background: radial-gradient(circle at top, #111827 0, #020617 50%, #000000 100%);
    color: #e5e7eb;
    padding: 60px 20px 35px;
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", sans-serif;
    font-size: 14px;
  }

  .tp-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
  }

  .tp-footer-brand-row {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
  }

  .tp-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .tp-footer-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, #22d3ee, #0f172a);
    border: 1px solid #4b5563;
    font-weight: 700;
    font-size: 16px;
  }

  .tp-footer-logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .tp-footer-separator {
    border: none;
    border-top: 1px solid #374151;
    margin: 10px 0 18px;
  }

  .tp-footer-separator--soft {
    opacity: 0.6;
    margin: 20px 0;
  }

  .tp-footer-disclaimer {
    line-height: 1.8;
    margin: 0;
    color: #d1d5db;
  }

  .tp-footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    margin: 10px 0 20px;
  }

  .tp-footer-col h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f9fafb;
  }

  .tp-footer-col p {
    margin: 0 0 8px;
    line-height: 1.7;
    color: #d1d5db;
  }

  /* Center disclaimer block */
  .tp-footer-center-note {
    text-align: center;
    max-width: 900px;
    margin: 24px auto 0;
    line-height: 1.8;
    color: #d1d5db;
  }

  .tp-footer-lifetime {
    margin: 16px 0 8px;
    font-size: 13px;
    color: #9ca3af;
    text-align: left;
  }

  .tp-footer-payments {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    margin: 14px 0 18px;
  }

  .tp-footer-payments img {
    height: 26px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.7));
    opacity: 0.95;
  }

  .tp-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 14px;
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
    color: #9ca3af;
  }

  .tp-footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }

  .tp-footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
    position: relative;
  }

  .tp-footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #22d3ee, #60a5fa);
    transition: width 0.2s ease;
  }

  .tp-footer-links a:hover::after {
    width: 100%;
  }

  @media (max-width: 900px) {
    .tp-footer-columns {
      grid-template-columns: minmax(0, 1fr);
      gap: 24px;
    }

    .tp-footer-center-note {
      margin-top: 20px;
    }

    .tp-footer-payments {
      justify-content: center;
    }
  }

  @media (max-width: 640px) {
    .tp-footer {
      padding: 50px 16px 30px;
    }

    .tp-footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }
  

  
.tp-sticky-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 1200px;
  z-index: 999999;

  background: rgba(15, 15, 15, 0.5); /* ✅ 50% transparent */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 10px 40px rgba(0,0,0,0.45);

  font-family: "Space Grotesk", sans-serif;
}

.tp-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
}

.tp-sticky-text {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
}

.tp-green {
  color: #22c55e;
  font-weight: 700;
}

.tp-sticky-btn {
  background: linear-gradient(90deg, #38bdf8, #60a5fa);
  color: #ffffff;
  text-decoration: none;

  padding: 12px 22px;
  border-radius: 10px;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;

  box-shadow:
    0 6px 20px rgba(56,189,248,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.2);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px rgba(56,189,248,0.8),
    inset 0 0 0 1px rgba(255,255,255,0.25);
}

.tp-hide-mobile {
  display: inline;
}

/* ✅ Mobile adjustments */
@media (max-width: 768px) {
  .tp-sticky-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .tp-hide-mobile {
    display: none;
  }

  .tp-sticky-btn {
    width: 100%;
    text-align: center;
  }
}
  



  
/* ===========================
   STICKY BAR (900px centered)
   =========================== */
.jv-sticky-bar {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 900px;            /* <<< trimmed width like screenshot */
  max-width: 90%;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}

.jv-sticky-bar.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ===========================
   INNER BOX (rounded container)
   =========================== */
.jv-sticky-inner {
  width: 100%;
  padding: 16px 22px;
  background: #1e1e1e;
  border-radius: 18px;

  box-shadow:
      0 0 0 1px rgba(0, 140, 255, 0.4),
      0 0 26px rgba(0, 110, 255, 0.4);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  animation: stickyFloat 8s ease-in-out infinite;
}

/* Floating animation */
@keyframes stickyFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ===========================
   HEADING
   =========================== */
.jv-sticky-heading {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

/* ===========================
   BUTTON ROW
   =========================== */
.jv-sticky-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   BUTTON STYLE
   =========================== */
.jv-cta-btn {
  padding: 14px 26px;
  background: linear-gradient(180deg, #1da1ff, #008cff);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;

  box-shadow:
      0 4px 0 #0066cc,
      0 0 12px rgba(0,140,255,0.7);

  transition: all .25s ease;
  position: relative;
  display: inline-block;
}

/* Hover glow + lift */
.jv-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow:
      0 6px 14px rgba(0,140,255,0.8),
      0 0 18px rgba(0,190,255,0.8);
  background: linear-gradient(180deg, #32b7ff, #009eff);
}

/* Tooltip on hover */
.jv-cta-btn:hover::after {
  content: attr(data-tip);
  position: absolute;
  background: #000;
  padding: 6px 10px;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(-42px);
  white-space: nowrap;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 600px) {
  .jv-cta-btn {
      width: 100%;
      text-align: center;
  }
}

/* ===========================
   TOP BANNER SECTION - 3D STYLES
   =========================== */
.top-banner-wrap {
  position: relative;
  background: #000000;
  padding: 20px 0;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* 3D Background Layers */
.top-banner-3d-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  transform: perspective(1200px) rotateX(5deg) scale(1.1);
  transform-origin: center top;
  animation: bannerBg3dMove 15s ease-in-out infinite;
  z-index: 0;
  filter: blur(1px);
}

.top-banner-3d-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    conic-gradient(from 0deg at 50% 50%, 
      rgba(255, 69, 0, 0.08) 0deg,
      rgba(255, 140, 0, 0.08) 90deg,
      rgba(255, 69, 0, 0.08) 180deg,
      rgba(255, 165, 0, 0.08) 270deg,
      rgba(255, 69, 0, 0.08) 360deg);
  transform: perspective(1000px) rotateX(-3deg) scale(1.15);
  animation: bannerGradientRotate 20s linear infinite;
  z-index: 0;
  opacity: 0.7;
}

.top-banner-3d-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 15% 40%, rgba(255, 69, 0, 0.4), transparent),
    radial-gradient(2px 2px at 85% 60%, rgba(255, 140, 0, 0.3), transparent),
    radial-gradient(1px 1px at 50% 30%, rgba(255, 165, 0, 0.5), transparent),
    radial-gradient(1px 1px at 70% 70%, rgba(255, 69, 0, 0.3), transparent);
  background-size: 200% 200%, 180% 180%, 150% 150%, 220% 220%;
  animation: bannerParticlesMove 25s ease-in-out infinite;
  z-index: 0;
  transform: translateZ(30px);
}

.top-banner-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, 
      transparent 0%,
      rgba(255, 69, 0, 0.1) 25%,
      rgba(255, 140, 0, 0.1) 50%,
      rgba(255, 69, 0, 0.1) 75%,
      transparent 100%);
  animation: bannerGlow 3s ease-in-out infinite;
  z-index: 0;
}

/* Banner Content */
.top-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.top-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

/* 3D Warning Icon */
.warning-icon-3d {
  position: relative;
  flex-shrink: 0;
  transform-style: preserve-3d;
  animation: warningIconFloat 3s ease-in-out infinite;
}

.warning-icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  transform-style: preserve-3d;
  transform: perspective(500px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.warning-icon-wrapper:hover {
  transform: perspective(500px) rotateY(0deg) rotateX(0deg) scale(1.1);
}

.warning-icon-front {
  position: relative;
  width: 100%;
  height: 100%;
  color: #ff4500;
  filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.8))
          drop-shadow(0 4px 12px rgba(255, 69, 0, 0.6));
  transform: translateZ(10px);
  animation: warningIconPulse 2s ease-in-out infinite;
}

.warning-icon-front svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 4px rgba(255, 69, 0, 0.9));
}

.warning-icon-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.3) 0%, transparent 70%);
  transform: translateZ(-5px) scale(1.2);
  border-radius: 50%;
  animation: warningIconGlow 2s ease-in-out infinite;
}

.warning-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%) translateZ(-10px);
  border-radius: 50%;
  animation: warningIconGlowPulse 2s ease-in-out infinite;
  pointer-events: none;
}

/* Banner Text */
.top-banner-text {
  flex: 1;
  min-width: 0;
}

.banner-text-main {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 8px 0;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5),
               0 0 12px rgba(255, 255, 255, 0.1);
  transform: translateZ(5px);
}

.banner-text-bold {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6),
               0 0 15px rgba(255, 255, 255, 0.15);
  transform: translateZ(5px);
  letter-spacing: 0.3px;
}

/* 3D Upgrade Button */
.top-banner-right {
  flex-shrink: 0;
}

.upgrade-btn-3d {
  position: relative;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
  background-size: 200% 200%;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transform-style: preserve-3d;
  transform: perspective(500px) rotateY(-2deg);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 
    0 6px 0 #cc4a1f,
    0 8px 20px rgba(255, 107, 53, 0.5),
    0 0 30px rgba(255, 107, 53, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: upgradeBtnFloat 3s ease-in-out infinite;
}

.upgrade-btn-3d:hover {
  transform: perspective(500px) rotateY(0deg) translateY(-3px) scale(1.05);
  background-position: 100% 0;
  box-shadow: 
    0 8px 0 #cc4a1f,
    0 12px 30px rgba(255, 107, 53, 0.7),
    0 0 40px rgba(255, 107, 53, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.upgrade-btn-3d:active {
  transform: perspective(500px) rotateY(0deg) translateY(-1px) scale(1.02);
  box-shadow: 
    0 4px 0 #cc4a1f,
    0 6px 15px rgba(255, 107, 53, 0.5),
    0 0 25px rgba(255, 107, 53, 0.4);
}

.upgrade-btn-text {
  position: relative;
  z-index: 2;
  display: block;
  transform: translateZ(10px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.upgrade-btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 1;
}

.upgrade-btn-3d:hover .upgrade-btn-glow {
  width: 300px;
  height: 300px;
}

.upgrade-btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  animation: upgradeBtnShine 3s ease-in-out infinite;
  z-index: 1;
}

/* Animations */
@keyframes bannerBg3dMove {
  0%, 100% {
    transform: perspective(1200px) rotateX(5deg) scale(1.1) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateX(3deg) scale(1.12) translateY(-5px);
  }
}

@keyframes bannerGradientRotate {
  0% {
    transform: perspective(1000px) rotateX(-3deg) scale(1.15) rotate(0deg);
  }
  100% {
    transform: perspective(1000px) rotateX(-3deg) scale(1.15) rotate(360deg);
  }
}

@keyframes bannerParticlesMove {
  0%, 100% {
    transform: translateZ(30px) translateX(0) translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateZ(30px) translateX(10px) translateY(-10px);
    opacity: 1;
  }
}

@keyframes bannerGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-100%);
  }
  50% {
    opacity: 0.6;
    transform: translateX(100%);
  }
}

@keyframes warningIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

@keyframes warningIconPulse {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.8))
            drop-shadow(0 4px 12px rgba(255, 69, 0, 0.6));
    transform: translateZ(10px) scale(1);
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 69, 0, 1))
            drop-shadow(0 6px 16px rgba(255, 69, 0, 0.8));
    transform: translateZ(10px) scale(1.05);
  }
}

@keyframes warningIconGlow {
  0%, 100% {
    opacity: 0.4;
    transform: translateZ(-5px) scale(1.2);
  }
  50% {
    opacity: 0.7;
    transform: translateZ(-5px) scale(1.3);
  }
}

@keyframes warningIconGlowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) translateZ(-10px) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) translateZ(-10px) scale(1.2);
  }
}

@keyframes upgradeBtnFloat {
  0%, 100% {
    transform: perspective(500px) rotateY(-2deg) translateY(0);
  }
  50% {
    transform: perspective(500px) rotateY(-2deg) translateY(-3px);
  }
}

@keyframes upgradeBtnShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-banner-wrap {
    padding: 16px 0;
  }
  
  .top-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .top-banner-left {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .warning-icon-3d {
    width: 40px;
    height: 40px;
  }
  
  .warning-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .banner-text-main {
    font-size: 14px;
  }
  
  .banner-text-bold {
    font-size: 15px;
  }
  
  .upgrade-btn-3d {
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .top-banner-right {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .top-banner-wrap {
    padding: 14px 0;
  }
  
  .banner-text-main {
    font-size: 13px;
  }
  
  .banner-text-bold {
    font-size: 14px;
  }
  
  .upgrade-btn-3d {
    padding: 10px 20px;
    font-size: 15px;
  }
}

/* ========== PRO UPGRADE SECTION ========== */
.pro-upgrade-wrap {
  position: relative;
  background: 
    linear-gradient(135deg, #ffffff 0%, #f8f9ff 15%, #fff5f8 30%, #f0f4ff 45%, #fff8f0 60%, #f8f9ff 75%, #ffffff 100%),
    radial-gradient(ellipse at top left, rgba(255, 31, 140, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(109, 68, 255, 0.12) 0%, transparent 50%);
  background-size: 400% 400%, 100% 100%, 100% 100%;
  animation: proGradientShift 15s ease infinite;
  padding: 80px 0 70px;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
  z-index: 999;
}

/* 3D Background Layers */
.pro-upgrade-3d-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 31, 140, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(109, 68, 255, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 60%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.98) 100%);
  transform: perspective(1200px) rotateX(8deg) rotateY(2deg) scale(1.15);
  transform-origin: center center;
  animation: proBg3dMove 20s ease-in-out infinite;
  z-index: 0;
  filter: blur(0.5px);
}

.pro-upgrade-3d-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    conic-gradient(from 0deg at 50% 50%, 
      rgba(255, 31, 140, 0.1) 0deg,
      rgba(109, 68, 255, 0.1) 90deg,
      rgba(59, 130, 246, 0.1) 180deg,
      rgba(236, 72, 153, 0.1) 270deg,
      rgba(255, 31, 140, 0.1) 360deg);
  transform: perspective(1000px) rotateX(-5deg) scale(1.2);
  animation: proGradientRotate 25s linear infinite;
  z-index: 0;
  opacity: 0.6;
}

.pro-upgrade-3d-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255, 31, 140, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(109, 68, 255, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(236, 72, 153, 0.4), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(59, 130, 246, 0.3), transparent),
    radial-gradient(2px 2px at 30% 80%, rgba(255, 31, 140, 0.2), transparent);
  background-size: 200% 200%, 180% 180%, 150% 150%, 220% 220%, 190% 190%;
  animation: proParticlesMove 30s ease-in-out infinite;
  z-index: 0;
  transform: translateZ(20px);
}

/* Floating 3D Icons */
.pro-upgrade-floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  perspective: 1500px;
}

.pro-floating-icon {
  position: absolute;
  font-size: 56px;
  transform-style: preserve-3d;
  animation: proFloat3d 8s ease-in-out infinite;
  z-index: 1;
  cursor: default;
}

.pro-icon-3d-wrapper {
  position: relative;
  transform-style: preserve-3d;
  display: inline-block;
  transition: transform 0.3s ease;
}

.pro-icon-3d-front {
  position: relative;
  display: inline-block;
  transform: translateZ(30px);
  filter: 
    drop-shadow(0 15px 30px rgba(255, 31, 140, 0.4))
    drop-shadow(0 5px 15px rgba(109, 68, 255, 0.3))
    drop-shadow(0 0 20px rgba(236, 72, 153, 0.5));
  text-shadow: 
    0 0 20px rgba(255, 31, 140, 0.6),
    0 0 40px rgba(109, 68, 255, 0.4),
    0 10px 20px rgba(0, 0, 0, 0.2);
  animation: proIconGlow 3s ease-in-out infinite;
}

.pro-icon-3d-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 31, 140, 0.3) 0%, transparent 70%);
  transform: translateZ(-20px) scale(1.5);
  border-radius: 50%;
  animation: proIconBackGlow 3s ease-in-out infinite;
  opacity: 0.6;
}

.pro-floating-icon.pro-icon-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  transform: translateZ(60px) rotateY(20deg) rotateX(10deg);
}

.pro-floating-icon.pro-icon-1 .pro-icon-3d-front {
  filter: 
    drop-shadow(0 15px 30px rgba(255, 31, 140, 0.5))
    drop-shadow(0 0 25px rgba(255, 31, 140, 0.6));
}

.pro-floating-icon.pro-icon-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1.2s;
  transform: translateZ(50px) rotateY(-25deg) rotateX(-8deg);
}

.pro-floating-icon.pro-icon-2 .pro-icon-3d-front {
  filter: 
    drop-shadow(0 15px 30px rgba(109, 68, 255, 0.5))
    drop-shadow(0 0 25px rgba(109, 68, 255, 0.6));
}

.pro-floating-icon.pro-icon-3 {
  top: 50%;
  left: 5%;
  animation-delay: 2.4s;
  transform: translateZ(55px) rotateY(30deg) rotateX(5deg);
}

.pro-floating-icon.pro-icon-3 .pro-icon-3d-front {
  filter: 
    drop-shadow(0 15px 30px rgba(236, 72, 153, 0.5))
    drop-shadow(0 0 25px rgba(236, 72, 153, 0.6));
}

.pro-floating-icon.pro-icon-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 3.6s;
  transform: translateZ(45px) rotateY(-20deg) rotateX(12deg);
}

.pro-floating-icon.pro-icon-4 .pro-icon-3d-front {
  filter: 
    drop-shadow(0 15px 30px rgba(59, 130, 246, 0.5))
    drop-shadow(0 0 25px rgba(59, 130, 246, 0.6));
}

.pro-floating-icon.pro-icon-5 {
  top: 30%;
  left: 50%;
  animation-delay: 4.8s;
  transform: translateZ(65px) rotateY(35deg) rotateX(-5deg);
}

.pro-floating-icon.pro-icon-5 .pro-icon-3d-front {
  filter: 
    drop-shadow(0 15px 30px rgba(255, 31, 140, 0.5))
    drop-shadow(0 0 25px rgba(236, 72, 153, 0.6));
}

.pro-floating-icon.pro-icon-6 {
  bottom: 30%;
  left: 30%;
  animation-delay: 6s;
  transform: translateZ(50px) rotateY(-30deg) rotateX(8deg);
}

.pro-floating-icon.pro-icon-6 .pro-icon-3d-front {
  filter: 
    drop-shadow(0 15px 30px rgba(255, 31, 140, 0.5))
    drop-shadow(0 0 25px rgba(109, 68, 255, 0.6));
}

/* Content Styles */
.pro-upgrade-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.pro-upgrade-header {
  margin-bottom: 40px;
}

.pro-upgrade-title {
  font-size: clamp(32px, 4vw, 35px);
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin: 0;
  letter-spacing: -0.02em;
  transform: translateZ(10px);
}

.pro-gradient-text {
  background: linear-gradient(135deg, #ff1f8c 0%, #6d44ff 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.pro-upgrade-main {
  margin-bottom: 40px;
}

.pro-upgrade-subtitle {
  font-size:45px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
  transform: translateZ(8px);
}

.pro-video-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  transform: translateZ(8px);
}

.pro-video-old {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #ef4444;
}

.pro-strikethrough {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: #ef4444;
  opacity: 0.7;
}

.pro-video-new {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: #22c55e;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  padding: 8px 20px;
  border-radius: 12px;
  border: 2px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.pro-features-list {
  margin-bottom: 30px;
  transform: translateZ(8px);
}

.pro-feature-item {
  font-size: 30px;
  font-weight: 700;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 12px;
}

.pro-cta-bold {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.4;
  transform: translateZ(10px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 22px;
  color: #20253D;
  background: #FEED01;
  border-radius: 0;
  margin: 30px auto 0;
  border-bottom: 3px solid #FC3666;
  padding: 12px 34px 6px;
  text-transform: uppercase;
}


.stop-play {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 25px;
  padding: 20px 35px;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  background: 
    linear-gradient(135deg, #ff1f8c 0%, #6d44ff 25%, #ec4899 50%, #3b82f6 75%, #ff1f8c 100%);
  background-size: 200% 200%;
  animation: proBenefitsGradient 5s ease-in-out infinite;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transform: translateZ(15px) perspective(1000px) rotateX(2deg);
  box-shadow: 
    0 10px 30px rgba(255, 31, 140, 0.4),
    0 0 40px rgba(109, 68, 255, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

@media (min-width: 1200px) {
  .pro-benefits {
    font-size: clamp(20px, 2.2vw, 24px);
  }
}

.pro-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: proBenefitsShine 3s ease-in-out infinite;
}

@keyframes proBenefitsGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes proBenefitsShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.pro-performance {
  font-size: clamp(20px, 2.5vw, 25px);
  font-weight: 800;
  background: linear-gradient(135deg, #ff1f8c 0%, #6d44ff 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  line-height: 1.4;
  transform: translateZ(10px);
  text-shadow: 0 2px 15px rgba(255, 31, 140, 0.3);
}

.pro-exclusive-badge {
  margin-top: 50px;
  transform: translateZ(8px);
}

.pro-badge-content {
  display: inline-block;
  background: #111827;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: clamp(14px, 1.8vw, 25px);
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(17, 24, 39, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  display: table;
}

.pro-badge-product {
  color: #ff1f8c;
  font-weight: 700;
}

/* Animations */
@keyframes proGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes proBg3dMove {
  0%, 100% {
    transform: perspective(1200px) rotateX(8deg) rotateY(2deg) scale(1.15) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateX(6deg) rotateY(-2deg) scale(1.18) translateY(-10px);
  }
}

@keyframes proGradientRotate {
  0% {
    transform: perspective(1000px) rotateX(-5deg) scale(1.2) rotate(0deg);
  }
  100% {
    transform: perspective(1000px) rotateX(-5deg) scale(1.2) rotate(360deg);
  }
}

@keyframes proParticlesMove {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%;
  }
  50% {
    background-position: 100% 100%, 0% 0%, 50% 50%, 100% 0%, 0% 100%;
  }
}

@keyframes proFloat3d {
  0%, 100% {
    transform: translateY(0) translateZ(50px) rotateY(0deg) rotateX(0deg);
  }
  25% {
    transform: translateY(-20px) translateZ(60px) rotateY(10deg) rotateX(5deg);
  }
  50% {
    transform: translateY(-10px) translateZ(55px) rotateY(-5deg) rotateX(-3deg);
  }
  75% {
    transform: translateY(-25px) translateZ(65px) rotateY(15deg) rotateX(8deg);
  }
}

@keyframes proIconGlow {
  0%, 100% {
    filter: 
      drop-shadow(0 15px 30px rgba(255, 31, 140, 0.4))
      drop-shadow(0 5px 15px rgba(109, 68, 255, 0.3))
      drop-shadow(0 0 20px rgba(236, 72, 153, 0.5));
    transform: translateZ(30px) scale(1);
  }
  50% {
    filter: 
      drop-shadow(0 20px 40px rgba(255, 31, 140, 0.6))
      drop-shadow(0 8px 20px rgba(109, 68, 255, 0.5))
      drop-shadow(0 0 30px rgba(236, 72, 153, 0.7));
    transform: translateZ(35px) scale(1.05);
  }
}

@keyframes proIconBackGlow {
  0%, 100% {
    opacity: 0.6;
    transform: translateZ(-20px) scale(1.5);
  }
  50% {
    opacity: 0.8;
    transform: translateZ(-25px) scale(1.6);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .pro-upgrade-wrap {
    padding: 60px 0 50px;
  }
  
  .pro-upgrade-title {
    font-size: 28px;
  }
  
  .pro-upgrade-subtitle {
    font-size: 22px;
  }
  
  .pro-video-comparison {
    flex-direction: column;
    gap: 15px;
  }
  
  .pro-video-old,
  .pro-video-new {
    font-size: 18px;
  }
  
  .pro-feature-item {
    font-size: 16px;
  }
  
  .pro-cta-bold {
    font-size: 20px;
  }
  
  .pro-sub-cta {
    font-size: 16px;
  }
  
  .pro-benefits {
    font-size: 16px;
    padding: 16px 24px;
    white-space: normal;
    display: block;
    text-align: center;
  }
  
  .pro-performance {
    font-size: 18px;
  }
  
  .pro-floating-icon {
    font-size: 40px;
  }
  
  .pro-badge-content {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .pro-upgrade-wrap {
    padding: 50px 0 40px;
  }
  
  .pro-upgrade-title {
    font-size: 24px;
  }
  
  .pro-upgrade-subtitle {
    font-size: 20px;
  }
  
  .pro-video-old,
  .pro-video-new {
    font-size: 16px;
  }
  
  .pro-feature-item {
    font-size: 15px;
  }
  
  .pro-cta-bold {
    font-size: 18px;
  }
  
  .pro-sub-cta {
    font-size: 15px;
  }
  
  .pro-benefits {
    font-size: 15px;
    padding: 14px 20px;
    white-space: normal;
    display: block;
    text-align: center;
  }
  
  .pro-performance {
    font-size: 16px;
  }
  
  .pro-floating-icon {
    font-size: 32px;
  }
  
  .pro-badge-content {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ========== TOKPRIMEAI UNLIMITED PROMO SECTION ========== */
.tokprime-unlimited-promo {
  position: relative;
  background: 
    linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 25%, #ffffff 50%, #fff8f0 75%, #f0f4ff 100%),
    radial-gradient(ellipse at top left, rgba(255, 165, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
  background-size: 400% 400%, 100% 100%, 100% 100%;
  animation: promoGradientShift 20s ease infinite;
  padding: 80px 0;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
  z-index: 998;
}

/* 3D Background Layers */
.promo-3d-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 165, 0, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 255, 0.99) 100%);
  transform: perspective(1200px) rotateX(5deg) rotateY(-2deg) scale(1.1);
  transform-origin: center center;
  animation: promoBg3dMove 25s ease-in-out infinite;
  z-index: 0;
  filter: blur(0.5px);
}

.promo-3d-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    conic-gradient(from 0deg at 50% 50%, 
      rgba(255, 165, 0, 0.08) 0deg,
      rgba(34, 197, 94, 0.08) 90deg,
      rgba(59, 130, 246, 0.08) 180deg,
      rgba(255, 165, 0, 0.08) 270deg,
      rgba(34, 197, 94, 0.08) 360deg);
  transform: perspective(1000px) rotateX(-3deg) scale(1.15);
  animation: promoGradientRotate 30s linear infinite;
  z-index: 0;
  opacity: 0.5;
}

.promo-3d-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255, 165, 0, 0.25), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(34, 197, 94, 0.25), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(59, 130, 246, 0.3), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255, 165, 0, 0.2), transparent);
  background-size: 200% 200%, 180% 180%, 150% 150%, 220% 220%;
  animation: promoParticlesMove 35s ease-in-out infinite;
  z-index: 0;
  transform: translateZ(20px);
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main CTA Banner */
.promo-main-banner {
  position: relative;
  margin: 0 auto 40px;
  max-width: 820px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa500 100%);
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 
    0 20px 60px rgba(255, 107, 53, 0.4),
    0 10px 30px rgba(255, 140, 66, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: perspective(1000px) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
}

.promo-main-banner:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
  box-shadow: 
    0 25px 70px rgba(255, 107, 53, 0.5),
    0 15px 40px rgba(255, 140, 66, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.promo-banner-gold-tab {
  position: absolute;
  top: -8px;
  left: 30px;
  width: 80px;
  height: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 0 0 15px 15px;
  box-shadow: 
    0 5px 15px rgba(255, 215, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  z-index: 3;
  transform: perspective(500px) rotateX(-10deg);
}

.promo-banner-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    transparent 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 20px;
  z-index: 1;
}

.promo-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.promo-banner-text {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(255, 255, 255, 0.3);
  margin: 0;
  letter-spacing: -0.5px;
  transform: translateZ(20px);
}

.promo-banner-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 70%);
  animation: promoShine 3s ease-in-out infinite;
  z-index: 1;
}

/* Benefits Row */
.promo-benefits-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.promo-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.promo-check-icon-3d {
  width: 32px;
  height: 32px;
  color: #22c55e;
  filter: 
    drop-shadow(0 4px 8px rgba(34, 197, 94, 0.4))
    drop-shadow(0 0 12px rgba(34, 197, 94, 0.3));
  transform: translateZ(15px);
  animation: promoCheckPulse 2s ease-in-out infinite;
}

.promo-check-icon-3d svg {
  width: 100%;
  height: 100%;
}

.promo-benefit-text {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Feature Cards Grid */
.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.promo-card {
  position: relative;
  perspective: 1000px;
  height: 100%;
}

.promo-card-3d-wrapper {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
  height: 100%;
}

.promo-card:hover .promo-card-3d-wrapper {
  transform: rotateY(5deg) rotateX(-5deg) translateZ(20px);
}

.promo-card-front {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 16px;
  padding: 20px 25px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateZ(30px);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.promo-card:hover .promo-card-front {
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateZ(40px);
}

.promo-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 16px;
  transform: translateZ(-20px) scale(1.05);
  opacity: 0.6;
}

/* Card Icons */
.promo-card-icon-wrapper {
  position: relative;
  flex-shrink: 0;
  transform-style: preserve-3d;
}

.promo-card-icon-3d {
  width: 60px;
  height: 60px;
  position: relative;
  transform: translateZ(25px);
  transition: transform 0.4s ease;
}

.promo-card:hover .promo-card-icon-3d {
  transform: translateZ(35px) rotateY(10deg) scale(1.1);
}

.promo-card-icon-3d svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.promo-icon-business {
  color: #22c55e;
  filter: 
    drop-shadow(0 8px 20px rgba(34, 197, 94, 0.4))
    drop-shadow(0 0 25px rgba(34, 197, 94, 0.3));
}

.promo-icon-guarantee {
  color: #ff6b35;
  filter: 
    drop-shadow(0 8px 20px rgba(255, 107, 53, 0.4))
    drop-shadow(0 0 25px rgba(255, 107, 53, 0.3));
}

.promo-icon-views {
  color: #3b82f6;
  filter: 
    drop-shadow(0 8px 20px rgba(59, 130, 246, 0.4))
    drop-shadow(0 0 25px rgba(59, 130, 246, 0.3));
}

.promo-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: promoIconGlow 3s ease-in-out infinite;
  z-index: -1;
}

.promo-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  flex: 1;
  text-align: left;
}

/* Card Specific Styles */
.promo-card-1 .promo-card-front {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.promo-card-2 .promo-card-front {
  background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
}

.promo-card-3 .promo-card-front {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

/* Animations */
@keyframes promoGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes promoBg3dMove {
  0%, 100% {
    transform: perspective(1200px) rotateX(5deg) rotateY(-2deg) scale(1.1);
  }
  50% {
    transform: perspective(1200px) rotateX(-5deg) rotateY(2deg) scale(1.15);
  }
}

@keyframes promoGradientRotate {
  0% {
    transform: perspective(1000px) rotateX(-3deg) scale(1.15) rotate(0deg);
  }
  100% {
    transform: perspective(1000px) rotateX(-3deg) scale(1.15) rotate(360deg);
  }
}

@keyframes promoParticlesMove {
  0%, 100% {
    background-position: 0% 0%, 20% 20%, 40% 40%, 60% 60%;
  }
  50% {
    background-position: 100% 100%, 80% 80%, 60% 60%, 40% 40%;
  }
}

@keyframes promoShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes promoCheckPulse {
  0%, 100% {
    transform: translateZ(15px) scale(1);
    filter: 
      drop-shadow(0 4px 8px rgba(34, 197, 94, 0.4))
      drop-shadow(0 0 12px rgba(34, 197, 94, 0.3));
  }
  50% {
    transform: translateZ(20px) scale(1.1);
    filter: 
      drop-shadow(0 6px 12px rgba(34, 197, 94, 0.6))
      drop-shadow(0 0 20px rgba(34, 197, 94, 0.5));
  }
}

@keyframes promoIconGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .promo-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .promo-card-title {
    font-size: 16px;
  }
  
  .promo-card-front {
    padding: 18px 20px;
    gap: 15px;
  }
  
  .promo-card-icon-3d {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .tokprime-unlimited-promo {
    padding: 60px 0;
  }
  
  .promo-main-banner {
    padding: 25px 30px;
    margin-bottom: 30px;
  }
  
  .promo-banner-text {
    font-size: 28px;
    white-space: nowrap;
  }
  
  .promo-benefits-row {
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .promo-benefit-text {
    font-size: 18px;
  }
  
  .promo-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 500px;
  }
  
  .promo-card-front {
    padding: 18px 20px;
    gap: 15px;
  }
  
  .promo-card-icon-3d {
    width: 50px;
    height: 50px;
  }
  
  .promo-card-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .tokprime-unlimited-promo {
    padding: 50px 0;
  }
  
  .promo-main-banner {
    padding: 20px 15px;
    border-radius: 16px;
    max-width: 95%;
  }
  
  .promo-banner-text {
    font-size: 20px;
    white-space: nowrap;
    letter-spacing: -0.3px;
  }
  
  .promo-banner-gold-tab {
    width: 60px;
    height: 25px;
    left: 20px;
  }
  
  .promo-benefits-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .promo-benefit-text {
    font-size: 16px;
  }
  
  .promo-card-front {
    padding: 16px 18px;
    gap: 12px;
  }
  
  .promo-card-icon-3d {
    width: 45px;
    height: 45px;
  }
  
  .promo-card-title {
    font-size: 15px;
  }
}

section.tp-testimonials {
  padding: 50px 0;
}

section.tp-value-reveal {
  padding: 60px 0 10px;
}

/* ========== TOKPRIME UNLIMITED PROMO - IMAGE MATCH OVERRIDE ========== */
.tokprime-unlimited-promo {
  position: relative;
  padding: 44px 0 34px;
  background: #eef2f5;
  overflow: hidden;
}
section.oto-sec-pro {
  padding: 90px 0;
}
.oto-sec-pro-inner {
  background: rgb(255,255,255);
  background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 1%, rgba(250,248,255,1) 100%);
  background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 1%,rgba(250,248,255,1) 100%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,1) 1%,rgba(250,248,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#faf8ff',GradientType=1 );
  border: 1px solid #D5C4FF;
  padding: 63px 40px 40px;
}
.oto-sec-pro-inner h2 {
  font-size: 41px;
  text-align: center;
font-weight: 800;
  border-bottom: 2px dashed #ddd;
  padding-bottom: 9px;
  margin: 0 auto 45px;
  display: table;
}
.oto-sec-pro-left img {
  margin: 14px auto 0;
  display: table;
}
.oto-sec-pro-right h3 {
  font-size: 32px;
font-weight: 800;
  border-bottom: 4px solid #FEC301;
  width: auto;
  float: left;
  padding-bottom: 3px;
  margin-bottom: 18px;
}
.oto-sec-pro-right h3 img {
  max-width: 28px;
}
.oto-sec-pro-right ul {
  width: 100%;
  float: left;
  padding: 0;
  margin-top: 13px;
}
.oto-sec-pro-right ul li {
  font-size: 24px;
  line-height: 36px;
  color: #1F295B;
  padding-left: 40px;
  list-style: none;
  position: relative;
  margin-bottom: 21px;
font-weight: 600;

}
.oto-sec-pro-right ul li img {
  position: absolute;
  left: 0;
  top: 4px;
  max-width: 28px;
}
.oto-sec-pro-text p {
  font-size: 24px;
  line-height: 41px;
  color: #1F295B;
  margin-bottom: 39px;
}
.oto-sec-pro-text p b {
  border-bottom: 1px solid;
}
.oto-sec-pro-text p:last-child {
  color: #0852FE;
}
.tokprime-unlimited-promo .container {
  max-width: 1120px;
}

.promo-3d-bg,
.promo-3d-gradient-layer,
.promo-3d-particles,
.promo-banner-gold-tab,
.promo-banner-gradient,
.promo-banner-shine,
.promo-card-back,
.promo-icon-glow {
  display: none !important;
}

.promo-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 14px;
}

.promo-main-banner {
  position: relative;
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 18px 30px;
  border-radius: 12px;
  background: linear-gradient(180deg, #1fd269 0%, #0fb85a 100%);
  border: 1px solid #11a953;
  box-shadow: 0 4px 14px rgba(8, 60, 31, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: none;
  white-space: nowrap;
  text-align: center;
  overflow: visible;
}

.promo-main-banner::before,
.promo-main-banner::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 44px;
  line-height: 1;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.18));
}

.promo-main-banner::before {
  content: "👉";
  left: -56px;
  z-index: 2;
}

.promo-main-banner::after {
  content: "👈";
  right: -56px;
  z-index: 2;
}

.promo-main-banner:hover,
.promo-card:hover .promo-card-3d-wrapper,
.promo-card:hover .promo-card-icon-3d {
  transform: none;
}

.promo-main-banner:hover {
  box-shadow: 0 4px 14px rgba(8, 60, 31, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.promo-card:hover .promo-card-front {
  transform: none;
  box-shadow: 0 2px 10px rgba(31, 41, 55, 0.08);
}

.promo-banner-content {
  text-align: center;
}

.promo-banner-content a {
  text-decoration: none;
}

.promo-banner-text {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #f3fff4;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.16);
}

.promo-banner-text::after {
  content: "";
  position: absolute;
  left: 58%;
  bottom: -6px;
  width: 88px;
  height: 6px;
  border-radius: 999px;
  background: #ffe23c;
  transform: translateX(-50%) rotate(-2deg);
}

.promo-benefits-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.promo-benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-check-icon-3d {
  width: 15px;
  height: 15px;
  color: #62b73f;
  animation: none;
  filter: none;
  transform: none;
}

.promo-benefit-text {
  font-size: 20px;
  font-weight: 600;
  color: #39434d;
  text-shadow: none;
}

.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}

.promo-card,
.promo-card-3d-wrapper {
  perspective: none;
  transform-style: flat;
}

.promo-card-front {
  min-height: 96px;
  padding: 18px 16px;
  border-radius: 12px;
  border: 1px solid #dde5ed;
  background: #ffffff !important;
  box-shadow: 0 2px 10px rgba(31, 41, 55, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transform: none;
}

.promo-card-icon-3d {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
}

.promo-card-icon-3d svg {
  width: 24px;
  height: 24px;
  filter: none;
  stroke-width: 2.2;
}

.promo-icon-business,
.promo-icon-guarantee,
.promo-icon-views {
  filter: none;
}

.promo-icon-business {
  background: #58bf3a;
  color: #ffffff;
}

.promo-icon-guarantee {
  background: #f6a325;
  color: #ffffff;
}

.promo-icon-views {
  background: #4ca4e8;
  color: #ffffff;
}

.promo-card-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.16;
  font-weight: 700;
  color: #1f2937;
  text-shadow: none;
}

@media (max-width: 1200px) {
  .promo-banner-text {
    font-size: clamp(24px, 3vw, 38px);
  }

  .promo-benefit-text {
    font-size: 18px;
  }

  .promo-card-title {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .promo-main-banner {
    max-width: 560px;
    padding: 16px 24px;
  }

  .promo-main-banner::before,
  .promo-main-banner::after {
    font-size: 38px;
  }

  .promo-banner-text {
    font-size: clamp(22px, 2.8vw, 34px);
  }

  .promo-benefit-text {
    font-size: 17px;
  }

  .promo-cards-grid {
    gap: 12px;
  }

  .promo-card-title {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .tokprime-unlimited-promo {
    padding: 34px 0 28px;
  }

  .promo-main-banner {
    max-width: 100%;
    white-space: normal;
  }

  .promo-main-banner::before,
  .promo-main-banner::after {
    display: none;
  }

  .promo-banner-text {
    font-size: 28px;
  }

  .promo-banner-text::after {
    left: 50%;
    width: 72px;
    height: 5px;
    bottom: -4px;
  }

  .promo-benefits-row {
    gap: 18px;
    margin-bottom: 18px;
  }

  .promo-benefit-text {
    font-size: 17px;
  }

  .promo-cards-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .promo-card-front {
    min-height: 84px;
    padding: 14px;
  }

  .promo-card-title {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .promo-main-banner {
    padding: 14px 14px;
    border-radius: 10px;
  }

  .promo-banner-text {
    font-size: 22px;
    line-height: 1.08;
  }

  .promo-banner-text::after {
    width: 58px;
    height: 4px;
  }

  .promo-benefits-row {
    flex-direction: column;
    gap: 10px;
  }

  .promo-benefit-text {
    font-size: 16px;
  }

  .promo-card-icon-3d {
    width: 38px;
    height: 38px;
  }

  .promo-card-icon-3d svg {
    width: 20px;
    height: 20px;
  }

  .promo-card-title {
    font-size: 14px;
  }
}