.user-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #52b3d9 0%, #5ec4e6 50%, #49a8cf 100%);
  padding-top: 80px;
}

.user-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.03) 10px,
      rgba(255, 255, 255, 0.03) 20px
    );
  animation: waveMove 20s linear infinite;
}

@keyframes waveMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-103px) translateY(-97px);
  }
}

.user-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 2%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 2%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 3%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.3) 0%, transparent 2%),
    radial-gradient(circle at 30% 70%, rgba(88, 213, 255, 0.4) 0%, transparent 4%);
  background-size: 400px 400px;
  animation: orbFloat 30s linear infinite;
}

@keyframes orbFloat {
  0% {
    transform: rotate(0deg) translateX(0) translateY(0);
  }
  100% {
    transform: rotate(362deg) translateX(98px) translateY(-102px);
  }
}

.user-hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  perspective: 1000px;
}

.user-shape {
  position: absolute;
  backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(70, 190, 237, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 20px 40px rgba(31, 38, 135, 0.2),
    inset 0 0 30px rgba(255, 255, 255, 0.15),
    0 0 80px rgba(70, 190, 237, 0.3);
}

@keyframes fluid3D {
  0%, 100% {
    transform: translateY(0) translateX(0) rotateZ(0deg) rotateY(0deg) scale(1);
  }
  20% {
    transform: translateY(-40px) translateX(30px) rotateZ(15deg) rotateY(20deg) scale(1.2);
  }
  40% {
    transform: translateY(30px) translateX(-40px) rotateZ(-10deg) rotateY(-15deg) scale(0.9);
  }
  60% {
    transform: translateY(-20px) translateX(20px) rotateZ(5deg) rotateY(10deg) scale(1.1);
  }
  80% {
    transform: translateY(10px) translateX(-10px) rotateZ(-5deg) rotateY(-5deg) scale(0.95);
  }
}

@keyframes liquidMorph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(135deg, rgba(70, 190, 237, 0.3) 0%, rgba(37, 99, 235, 0.3) 100%);
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    background: linear-gradient(135deg, rgba(88, 213, 255, 0.3) 0%, rgba(102, 126, 234, 0.3) 100%);
  }
  50% {
    border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
    background: linear-gradient(135deg, rgba(70, 190, 237, 0.3) 0%, rgba(88, 213, 255, 0.3) 100%);
  }
  75% {
    border-radius: 40% 60% 30% 70% / 70% 40% 60% 30%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(70, 190, 237, 0.3) 100%);
  }
}

@keyframes pulseWave {
  0%, 100% {
    transform: scale(1) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  50% {
    transform: scale(3) translateX(200px);
    opacity: 0.1;
  }
  90% {
    opacity: 0;
  }
}

@keyframes digitalGrid {
  0% {
    transform: perspective(600px) rotateX(0deg) rotateY(0deg);
    opacity: 0.2;
  }
  50% {
    transform: perspective(600px) rotateX(180deg) rotateY(180deg);
    opacity: 0.4;
  }
  100% {
    transform: perspective(600px) rotateX(360deg) rotateY(360deg);
    opacity: 0.2;
  }
}

.user-shape-1 {
  width: 450px;
  height: 450px;
  top: -200px;
  left: -200px;
  animation: fluid3D 25s infinite ease-in-out, liquidMorph 20s infinite ease-in-out;
  transform-style: preserve-3d;
  background: linear-gradient(135deg,
    rgba(70, 190, 237, 0.25) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(88, 213, 255, 0.15) 100%);
}

.user-shape-2 {
  width: 350px;
  height: 350px;
  top: 15%;
  right: -100px;
  animation: fluid3D 30s infinite ease-in-out reverse, pulseWave 10s infinite ease-in-out;
  animation-delay: 3s;
  transform-style: preserve-3d;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  background: linear-gradient(45deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(70, 190, 237, 0.15) 100%);
}

.user-shape-3 {
  width: 600px;
  height: 350px;
  bottom: -180px;
  left: 20%;
  animation: fluid3D 35s infinite ease-in-out, liquidMorph 25s infinite ease-in-out reverse;
  animation-delay: 7s;
  transform-style: preserve-3d;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg,
    rgba(88, 213, 255, 0.2) 0%,
    rgba(37, 99, 235, 0.1) 50%,
    transparent 100%);
  box-shadow:
    0 0 100px rgba(70, 190, 237, 0.4),
    inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.user-shape-4 {
  width: 100%;
  height: 150px;
  top: 40%;
  left: 0;
  animation: pulseWave 12s infinite ease-in-out;
  animation-delay: 0s;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(70, 190, 237, 0.1) 20px,
    rgba(70, 190, 237, 0.1) 40px
  );
  filter: blur(2px);
  border: none;
  backdrop-filter: none;
  transform-origin: left center;
}

.user-shape-5 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: 10%;
  animation: digitalGrid 20s infinite linear;
  animation-delay: 5s;
  transform-style: preserve-3d;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  background:
    conic-gradient(
      from 0deg at 50% 50%,
      rgba(70, 190, 237, 0.2) 0deg,
      rgba(255, 255, 255, 0.1) 60deg,
      rgba(88, 213, 255, 0.2) 120deg,
      rgba(37, 99, 235, 0.1) 180deg,
      rgba(102, 126, 234, 0.2) 240deg,
      rgba(255, 255, 255, 0.1) 300deg,
      rgba(70, 190, 237, 0.2) 360deg
    );
  box-shadow:
    0 0 80px rgba(88, 213, 255, 0.5),
    inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.user-shape-1,
.user-shape-2,
.user-shape-3,
.user-shape-4,
.user-shape-5 {
  will-change: transform, opacity;
}

.user-hero::before,
.user-hero::after {
  will-change: transform;
}

@media (max-width: 768px) {
  .user-hero::after {
    animation: none;
    background-size: 250px 250px;
  }

  .user-hero::before {
    animation-duration: 30s;
  }

  .user-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
  }

  .user-shape-2 {
    width: 200px;
    height: 200px;
    right: -50px;
  }

  .user-shape-3 {
    width: 400px;
    height: 250px;
    bottom: -120px;
  }

  .user-shape-4 {
    height: 80px;
    filter: blur(1px);
    opacity: 0.1;
  }

  .user-shape-5 {
    width: 180px;
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .user-shape,
  .user-hero::before,
  .user-hero::after,
  .user-hero {
    animation: none !important;
  }

  .user-hero {
    background: #46beed;
  }
}

@media (max-width: 768px) and (max-height: 600px) {
  .user-hero::before,
  .user-hero::after {
    display: none;
  }

  .user-shape {
    backdrop-filter: none;
    filter: blur(30px);
  }
}

@media (min-width: 1920px) {
  .user-shape-1 {
    width: 550px;
    height: 550px;
  }

  .user-shape-3 {
    width: 800px;
    height: 450px;
  }

  .user-shape-5 {
    width: 400px;
    height: 400px;
  }
}

.user-hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  position: relative;
  transform: rotate(-0.2deg);
}

.user-hero-description {
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.user-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
  perspective: 1000px;
  position: relative;
  z-index: 10;
}

.user-hero-badge .badge-text {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.2) 20%,
    rgba(0, 0, 0, 0.18) 40%,
    rgba(0, 0, 0, 0.22) 60%,
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0.26) 100%
  );
  backdrop-filter: blur(24px) saturate(200%) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0.875rem 2.25rem;
  border-radius: 100px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.2),
    0 2px 10px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px rgba(0, 0, 0, 0.1),
    0 0 60px rgba(0, 0, 0, 0.1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.user-hero-badge .badge-text::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  animation: liquidMove 8s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes liquidMove {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg) scale(0.9);
  }
}

.user-hero-badge:hover .badge-text {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.15),
    0 0 120px rgba(0, 0, 0, 0.15);
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.28) 15%,
    rgba(0, 0, 0, 0.25) 30%,
    rgba(0, 0, 0, 0.32) 45%,
    rgba(0, 0, 0, 0.27) 60%,
    rgba(0, 0, 0, 0.35) 75%,
    rgba(0, 0, 0, 0.28) 90%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.user-hero-badge:hover .badge-text::before {
  opacity: 1;
  animation: ripple 1.5s ease-out infinite;
}

@keyframes ripple {
  0% {
    background: radial-gradient(
      circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.2) 10%,
      rgba(255, 255, 255, 0.1) 20%,
      transparent 30%
    );
  }
  100% {
    background: radial-gradient(
      circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      transparent 0%,
      rgba(255, 255, 255, 0.1) 30%,
      rgba(255, 255, 255, 0.05) 60%,
      transparent 100%
    );
  }
}

.user-hero-badge:hover .badge-text::after {
  animation:
    liquidMove 3s ease-in-out infinite,
    liquidPulse 1.5s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes liquidPulse {
  0%,
  100% {
    filter: blur(40px) contrast(1.2);
  }
  50% {
    filter: blur(60px) contrast(1.5);
  }
}

.user-hero-highlight {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
}

.highlight-item i,
.highlight-item .bi {
  font-size: 1.2rem;
}

.user-hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: bold;
  transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transform: rotate(-0.3deg);
}

.hero-button i,
.hero-button .bi {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  z-index: 2;
}

.hero-button.primary {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.95) 100%);
  color: #46beed;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-button.primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  box-shadow:
    0 1rem 48px rgba(0, 0, 0, 0.2),
    0 0.5rem 24px rgba(0, 0, 0, 0.15),
    inset 0 2px 6px rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.9);
}

.hero-button.primary:hover i,
.hero-button.primary:hover .bi {
  transform: translateX(3px);
}

.hero-button.primary:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 0.5rem 24px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.hero-button.primary .button-bg {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(70, 190, 237, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-button.primary:hover .button-bg {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.hero-button.primary.pulse-effect {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0.5rem 32px rgba(0, 0, 0, 0.15),
      0 4px 1rem rgba(0, 0, 0, 0.1),
      inset 0 2px 4px rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.2),
      0 6px 20px rgba(0, 0, 0, 0.15),
      inset 0 2px 4px rgba(255, 255, 255, 0.8),
      0 0 0 0.5rem rgba(255, 255, 255, 0.3);
  }
}

.hero-button.secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 0.5rem 32px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-button.secondary:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 1rem 48px rgba(0, 0, 0, 0.15),
    inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

.hero-button.secondary:hover i,
.hero-button.secondary:hover .bi {
  transform: translateY(3px);
}

.hero-button.secondary .button-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  overflow: hidden;
  pointer-events: none;
}

.hero-button.secondary:hover .button-ripple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  to {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.section-header {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  margin-bottom: 1rem;
}

.highlight-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.user-features-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  position: relative;
  overflow: hidden;
}

.user-features-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(70, 190, 237, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.user-features-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
}

.user-features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  margin-bottom: 3rem;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-visual {
  flex: 0 0 auto;
  position: relative;
}

.visual-circle {
  width: 180px;
  height: 180px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, #46beed 0%, #58d5ff 50%, #70e1ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 20px 40px rgba(70, 190, 237, 0.25),
    0 10px 20px rgba(70, 190, 237, 0.15),
    inset 0 -3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-circle.accent {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 50%, #ffa0a0 100%);
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  box-shadow:
    0 20px 40px rgba(255, 107, 107, 0.25),
    0 10px 20px rgba(255, 107, 107, 0.15),
    inset 0 -3px 6px rgba(0, 0, 0, 0.1);
}

.visual-circle.secondary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8e5cb4 100%);
  border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  box-shadow:
    0 20px 40px rgba(102, 126, 234, 0.25),
    0 10px 20px rgba(102, 126, 234, 0.15),
    inset 0 -3px 6px rgba(0, 0, 0, 0.1);
}

.visual-circle.tertiary {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 50%, #81c784 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  box-shadow:
    0 20px 40px rgba(76, 175, 80, 0.25),
    0 10px 20px rgba(76, 175, 80, 0.15),
    inset 0 -3px 6px rgba(0, 0, 0, 0.1);
}

.visual-circle i,
.visual-circle .bi {
  font-size: 4rem;
  color: #fff;
  z-index: 2;
  position: relative;
}

.visual-decoration {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(70, 190, 237, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.visual-decoration.accent {
  border-color: rgba(255, 107, 107, 0.2);
}

.visual-decoration.secondary {
  border-color: rgba(102, 126, 234, 0.2);
}

.visual-decoration.tertiary {
  border-color: rgba(76, 175, 80, 0.2);
}

.feature-content {
  flex: 1;
  padding: 2rem;
}

.feature-content h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #2563eb 0%, var(--color-accent) 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-description {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.point-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(70, 190, 237, 0.08) 0%, rgba(70, 190, 237, 0.03) 100%);
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  border: 1px solid rgba(70, 190, 237, 0.2);
  transition: all 0.3s ease;
}

.point-item:hover {
  background: linear-gradient(135deg, rgba(70, 190, 237, 0.15) 0%, rgba(70, 190, 237, 0.08) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(70, 190, 237, 0.15);
}

.point-item i,
.point-item .bi {
  color: #46beed;
  font-size: 0.9rem;
}

.feature-row.reverse .point-item {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 107, 107, 0.03) 100%);
  border-color: rgba(255, 107, 107, 0.2);
}

.feature-row.reverse .point-item i,
.feature-row.reverse .point-item .bi {
  color: #ff6b6b;
}

.feature-row.reverse .point-item:hover {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 107, 107, 0.08) 100%);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.15);
}

.feature-row:nth-child(3) .point-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(102, 126, 234, 0.03) 100%);
  border-color: rgba(102, 126, 234, 0.2);
}

.feature-row:nth-child(3) .point-item i,
.feature-row:nth-child(3) .point-item .bi {
  color: #667eea;
}

.feature-row:nth-child(3) .point-item:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(102, 126, 234, 0.08) 100%);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.feature-row:nth-child(4) .point-item {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(76, 175, 80, 0.03) 100%);
  border-color: rgba(76, 175, 80, 0.2);
}

.feature-row:nth-child(4) .point-item i,
.feature-row:nth-child(4) .point-item .bi {
  color: #4caf50;
}

.feature-row:nth-child(4) .point-item:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.08) 100%);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}


.user-steps-section {
  padding: 3rem 0;
  background: #f8fafb;
  position: relative;
  overflow: hidden;
}

.steps-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
  position: relative;
  box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.04);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: #46beed;
  box-shadow: 0 0.5rem 24px rgba(70, 190, 237, 0.15);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.step-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #46beed;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  border-radius: 0.5rem;
  letter-spacing: 0.05em;
}

.step-icon {
  font-size: 2rem;
  color: #46beed;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  opacity: 1;
  transform: scale(1.1);
}

.step-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-card p {
  line-height: 1.7;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .step-card {
    padding: 2rem 1.5rem;
  }

  .step-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .step-icon {
    font-size: 1.5rem;
  }

  .step-card h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .user-hero {
    min-height: 70vh;
    padding: 80px 15px;
  }

  .user-hero-highlight {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .highlight-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.75rem 1rem;
  }

  .user-hero-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-button {
    max-width: 320px;
    justify-content: center;
  }

  .feature-row {
    flex-direction: column !important;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .feature-row.reverse {
    flex-direction: column !important;
  }

  .feature-visual {
    margin: 0 auto !important;
  }

  .visual-circle {
    width: 120px;
    height: 120px;
  }

  .visual-circle i,
  .visual-circle .bi {
    font-size: 2.5rem;
  }

  .visual-decoration {
    width: 150px;
    height: 150px;
  }

  .feature-content {
    padding: 1rem;
    text-align: center;
  }

  .feature-content h3 {
    font-size: 1.4rem;
  }

  .feature-description {
    font-size: 1rem;
  }

  .feature-points {
    justify-content: center;
  }

  .point-item {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .user-hero {
    min-height: 80vh;
    padding: 80px 30px;
  }

  .highlight-item {
    width: auto;
    min-width: 200px;
  }

  .feature-row {
    flex-direction: row !important;
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: center;
  }

  .feature-row.reverse {
    flex-direction: row-reverse !important;
  }

  .feature-visual {
    flex: 0 0 auto;
  }

  .visual-circle {
    width: 160px;
    height: 160px;
  }

  .visual-circle i,
  .visual-circle .bi {
    font-size: 3.5rem;
  }

  .visual-decoration {
    width: 190px;
    height: 190px;
  }

  .feature-content {
    padding: 1.5rem;
    text-align: left;
    flex: 1;
  }

  .feature-content h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .user-hero {
    min-height: 90vh;
    padding: 80px 40px;
  }

  .user-hero-highlight {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .highlight-item {
    width: auto;
    min-width: 220px;
    max-width: 280px;
    padding: 1rem 1.5rem;
  }

  .user-features-container {
    padding: 4rem 3rem;
  }

  .feature-row {
    flex-direction: row !important;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
  }

  .feature-row.reverse {
    flex-direction: row-reverse !important;
  }

  .feature-visual {
    flex: 0 0 auto;
  }

  .visual-circle {
    width: 180px;
    height: 180px;
  }

  .visual-circle i,
  .visual-circle .bi {
    font-size: 4rem;
  }

  .visual-decoration {
    width: 210px;
    height: 210px;
  }

  .feature-content {
    padding: 2rem;
    text-align: left;
    flex: 1;
  }

  .feature-content h3 {
    font-size: 2rem;
  }

  .feature-description {
    font-size: 1.125rem;
  }

  .feature-points {
    justify-content: flex-start;
  }

  .point-item {
    font-size: 0.875rem;
    padding: 0.4rem 0.8rem;
  }
}