.product-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(142deg, #52b3d9 0%, #5abfe3 45%, #4fa9d2 100%);
  padding-top: 80px;
}

.product-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: meshMove 20s linear infinite;
}

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

.product-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(358deg) translateX(102px) translateY(-97px);
  }
}

.product-hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.product-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 float3D {
  0%, 100% {
    transform: translateY(0) translateX(0) translateZ(0) rotateX(0deg) rotateY(0deg) scale(1);
  }
  25% {
    transform: translateY(-30px) translateX(20px) translateZ(50px) rotateX(10deg) rotateY(15deg) scale(1.1);
  }
  50% {
    transform: translateY(20px) translateX(-20px) translateZ(-30px) rotateX(-5deg) rotateY(10deg) scale(0.95);
  }
  75% {
    transform: translateY(-15px) translateX(10px) translateZ(20px) rotateX(5deg) rotateY(-10deg) scale(1.05);
  }
}

@keyframes morphing {
  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%);
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    background: linear-gradient(135deg, rgba(88, 213, 255, 0.3) 0%, rgba(70, 190, 237, 0.3) 100%);
  }
}

.product-shape-1 {
  width: 450px;
  height: 450px;
  top: -200px;
  left: -200px;
  animation: float3D 25s infinite ease-in-out, morphing 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%);
}

.product-shape-2 {
  width: 350px;
  height: 350px;
  top: 15%;
  right: -100px;
  animation: float3D 30s infinite ease-in-out reverse;
  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%);
}

.product-shape-3 {
  width: 600px;
  height: 350px;
  bottom: -180px;
  left: 20%;
  animation: float3D 35s infinite ease-in-out, morphing 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);
}

.product-shape-4 {
  width: 100%;
  height: 150px;
  top: 40%;
  left: 0;
  animation: aurora 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;
}

.product-shape-5 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: 10%;
  animation: float3D 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);
}

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

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

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

  .product-shape-1 {
    width: 250px;
    height: 250px;
    top: -100px;
    left: -100px;
  }

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

  .product-shape-3 {
    width: 300px;
    height: 200px;
    bottom: -100px;
  }

  .product-shape-4 {
    height: 100px;
    filter: blur(30px);
  }

  .product-shape-5 {
    width: 150px;
    height: 150px;
  }

  @keyframes float3D {
    0%, 100% {
      transform: translateY(0) translateX(0) scale(1);
    }
    50% {
      transform: translateY(-20px) translateX(10px) scale(1.05);
    }
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  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 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
  transform: rotate(-0.1deg);
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
}

.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;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--stagger-delay, 0s);
}

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

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

  .fade-in-up,
  .section-header,
  .stagger-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

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

  .product-shape {
    animation: float 20s infinite ease-in-out;
    backdrop-filter: none;
  }
}

.product-hero-content {
  text-align: center;
  z-index: 1;
  transform: rotate(0.15deg);
  padding: 2rem;
  max-width: 1000px;
}

.product-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;
}

.product-hero-badge .badge-text {
  position: relative;
  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);
  -webkit-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;
}

.product-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%
  );
}

.product-hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 1);
  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);
}

.product-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: 49px 51px 48px 52px;
  font-size: 1.125rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transform: rotate(0.2deg);
}

.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);
  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);
  text-shadow: none;
  font-weight: bold;
}

.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;
  }
}

.service-features-section {
  padding: 5rem 0;
  background: #fafbfc;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(102, 126, 234, 0.08);
}

.service-features-bg-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 340px;
  pointer-events: none;
}

.pattern-svg {
  width: 100%;
  height: 100%;
}

.wave-path {
  fill: transparent;
  stroke: rgba(102, 126, 234, 0.06);
  stroke-width: 1;
  stroke-dasharray: 5 10;
  animation: waveDash 20s linear infinite;
}

@keyframes waveDash {
  to {
    stroke-dashoffset: -15;
  }
}

.service-features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.features-timeline {
  position: relative;
  padding: 3rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e3e8f0;
  transform: translateX(-50%);
}

.timeline-line::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #667eea;
  animation: timelineFlow 3s ease-in-out infinite;
  transform-origin: top;
}

@keyframes timelineFlow {
  0%, 100% {
    transform: scaleY(0);
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.2;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.timeline-item.left {
  justify-content: flex-start;
  padding-right: calc(50% + 40px);
}

.timeline-item.right {
  justify-content: flex-end;
  padding-left: calc(50% + 40px);
}

.timeline-content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(102, 126, 234, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 500px;
  width: 100%;
}

.timeline-content:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #667eea;
  transform: translateY(-2px);
}

.timeline-number {
  position: absolute;
  top: -15px;
  font-size: 3rem;
  font-weight: bold;
  color: rgba(102, 126, 234, 0.1);
  z-index: -1;
  letter-spacing: -2px;
}

.timeline-item.left .timeline-number {
  right: 20px;
}

.timeline-item.right .timeline-number {
  left: 20px;
}

.timeline-body h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.timeline-description {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.timeline-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: #f0f3ff;
  color: #667eea;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: bold;
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: #667eea;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 0.5rem rgba(102, 126, 234, 0.2);
}

.timeline-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  border: 2px solid #e3e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #667eea;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.06);
  top: 50%;
  transform: translateY(-50%);
}

.timeline-item.left .timeline-icon {
  right: calc(-50% - 30px);
}

.timeline-item.right .timeline-icon {
  left: calc(-50% - 30px);
}

.timeline-content:hover ~ .timeline-icon,
.timeline-icon:hover {
  border-color: #667eea;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 1rem rgba(102, 126, 234, 0.2);
}

.recommended-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.98) 0%,
    rgba(237, 243, 254, 0.95) 25%,
    rgba(240, 246, 255, 0.92) 50%,
    rgba(244, 240, 253, 0.9) 75%,
    rgba(255, 251, 235, 0.88) 100%
  );
  position: relative;
  overflow: hidden;
}

.recommended-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 60%, rgba(70, 190, 237, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

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

.recommended-flow {
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem 0;
}

.flow-item {
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  padding: 0 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flow-item:hover {
  transform: translateY(-2px);
}

.flow-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.flow-number span {
  color: #475569;
  font-size: 1.3rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.flow-item:hover .flow-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
}

.flow-item:hover .flow-number span {
  color: #fff;
}

.flow-content {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.flow-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.flow-item:hover .flow-content {
  box-shadow:
    0 0.5rem 25px rgba(102, 126, 234, 0.12),
    0 3px 10px rgba(0, 0, 0, 0.06);
  border-color: rgba(102, 126, 234, 0.2);
}

.flow-item:hover .flow-content::before {
  transform: scaleX(1);
}

.flow-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.flow-header .bi {
  font-size: 1.4rem;
  color: #667eea;
  transition: all 0.3s ease;
}

.flow-item:hover .flow-header .bi {
  background: rgba(102, 126, 234, 0.15);
  transform: translateY(-1px);
}

.flow-header h4 {
  font-size: 1.35rem;
  margin: 0;
  color: #1e293b;
  font-weight: bold;
  line-height: 1.3;
}

.flow-content p {
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  font-size: 1rem;
}

.flow-arrow {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 25px;
  background: #e2e8f0;
  opacity: 0.6;
}

.flow-arrow::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #cbd5e1;
  border-radius: 50%;
}

.flow-item:last-child .flow-arrow {
  display: none;
}

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

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

  .hero-button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .hero-button i,
  .hero-button .bi {
    font-size: 1.125rem;
  }

  .service-features-section {
    padding: 3rem 0 2rem;
  }

  .service-features {
    padding: 0 1rem;
  }

  .features-timeline {
    padding: 1rem 0;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item {
    margin-bottom: 2rem;
    display: block;
  }

  .timeline-item.left,
  .timeline-item.right {
    padding: 0;
    justify-content: center;
  }

  .timeline-content {
    max-width: 100%;
    padding: 1.75rem 1.5rem;
    margin: 0;
    position: relative;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.12);
  }

  .timeline-icon {
    position: absolute !important;
    left: auto !important;
    right: 1.5rem !important;
    top: 1.5rem !important;
    transform: none !important;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  }

  .timeline-number {
    position: static !important;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: bold;
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
  }

  .timeline-body h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    padding-right: 3rem; 
    line-height: 1.3;
  }

  .timeline-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.25rem;
  }

  .timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0;
  }

  .feature-tag {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
  }

  .service-features-section .section-header h2 {
    font-size: 1.65rem;
    line-height: 1.3;
    padding: 0 1rem;
  }

  .service-features-section .section-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .timeline-content:active {
    transform: scale(0.98);
    box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.12);
  }

  .recommended-section {
    padding: 2.5rem 0;
  }

  .recommended-content {
    padding: 0 1rem;
  }

  .flow-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }

  .flow-number {
    margin-top: 0;
    width: 35px;
    height: 35px;
  }

  .flow-number span {
    font-size: 0.9rem;
  }

  .flow-arrow {
    display: none;
  }

  .flow-content {
    width: 100%;
    padding: 1.25rem;
  }

  .flow-header {
    justify-content: center;
    text-align: center;
  }

  .flow-header h4 {
    font-size: 1.1rem;
  }

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

  .hero-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-features-section {
    padding: 2.5rem 0 1.5rem;
  }

  .service-features {
    padding: 0 0.75rem;
  }

  .timeline-item {
    margin-bottom: 1.5rem;
  }

  .timeline-content {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .timeline-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
    right: 1.25rem !important;
    top: 1.25rem !important;
  }

  .timeline-number {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }

  .timeline-body h4 {
    font-size: 1.1rem;
    padding-right: 2.5rem;
  }

  .timeline-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .feature-tag {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }

  .service-features-section .section-header h2 {
    font-size: 1.5rem;
    padding: 0 0.75rem;
  }

  .service-features-section .section-subtitle {
    font-size: 0.9rem;
    padding: 0 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .service-features-section {
    padding: 4rem 0;
  }

  .recommended-section {
    padding: 4rem 0;
  }

  .recommended-content {
    padding: 0 2rem;
  }

  .flow-item {
    padding: 1rem;
    margin-bottom: 2rem;
  }

  .flow-content {
    padding: 1.75rem;
  }

  .flow-header h4 {
    font-size: 1.3rem;
  }
}

@media (min-width: 1024px) {
  .service-features-section {
    padding: 5rem 0;
  }

  .recommended-section {
    padding: 5rem 0;
  }

  .recommended-content {
    padding: 0 3rem;
  }

  .flow-item {
    padding: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .flow-content {
    padding: 2rem;
  }

  .flow-header h4 {
    font-size: 1.35rem;
  }
}