/* ============================================
   FINVERRA CAPITAL — Home Page Styles
   ============================================ */

/* --------- Hero Section --------- */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,64,116,0.3) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

/* Pattern Overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-4xl);
  align-items: center;
  padding-top: var(--nav-height);
}

.hero-content {
  padding: var(--space-3xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.2);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: var(--fw-semibold);
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: var(--space-xl);
  animation: fadeInDown 0.8s ease both;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero-brand-name {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--accent);
  font-weight: var(--fw-semibold);
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
  animation: fadeInDown 0.8s ease both;
}

.hero-hindi-tagline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.1s both;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(212,168,67,0.2);
  border-radius: 4px;
}

.hero-description {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  line-height: var(--lh-relaxed);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat .stat-number {
  color: var(--white);
  font-size: var(--fs-h3);
}

.hero-stat .stat-label {
  color: rgba(255,255,255,0.5);
}

/* Hero Visual — right side */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.5s both;
}

.hero-card-stack {
  position: relative;
  height: 500px;
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  color: var(--white);
  animation: float 6s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 10%;
  left: 10%;
  width: 280px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  top: 35%;
  right: 5%;
  width: 250px;
  animation-delay: 1.5s;
}

.hero-float-card.card-3 {
  bottom: 5%;
  left: 20%;
  width: 260px;
  animation-delay: 3s;
}

.hero-float-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(212,168,67,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.hero-float-card h4 {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.hero-float-card p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  margin: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.4);
  font-size: var(--fs-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 1s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* --------- Trust Bar --------- */
.trust-bar {
  background: var(--white);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--light-gray);
}

.trust-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--mid-gray);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  transition: color var(--transition-fast);
}

.trust-item:hover {
  color: var(--primary);
}

.trust-item i {
  font-size: 1.4rem;
  color: var(--accent);
}

/* --------- Why Finverra --------- */
.why-section {
  padding: var(--space-3xl) 0;
}

.why-section .grid {
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: visible;
}

.why-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

/* ===== Animated Illustration ===== */
.why-illustration {
  position: relative;
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #F0F4FF 0%, #FFF9ED 100%);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.illust-bg-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(212,168,67,0.06);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation: illustPulse 4s ease-in-out infinite;
}

@keyframes illustPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

.illust-chart {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 160px;
  z-index: 2;
}

.chart-bar {
  width: 32px;
  height: var(--bar-h);
  background: linear-gradient(180deg, var(--accent) 0%, #E8C76A 100%);
  border-radius: 6px 6px 0 0;
  position: relative;
  animation: barGrow 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.3s; }
.chart-bar:nth-child(3) { animation-delay: 0.5s; }
.chart-bar:nth-child(4) { animation-delay: 0.7s; }
.chart-bar:nth-child(5) { animation-delay: 0.9s; }

.chart-bar span {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  color: var(--mid-gray);
  font-weight: var(--fw-semibold);
}

@keyframes barGrow {
  to { transform: scaleY(1); }
}

.illust-arrow {
  position: absolute;
  width: 200px;
  bottom: 120px;
  left: 50%;
  transform: translateX(-45%);
  z-index: 3;
}

.illust-arrow svg {
  width: 100%;
  height: auto;
}

.arrow-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawArrow 2s ease-out 1s forwards;
}

.arrow-head {
  opacity: 0;
  animation: fadeIn 0.3s ease 2.8s forwards;
}

@keyframes drawArrow {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.illust-float-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 4;
  animation: floatIcon 3s ease-in-out infinite;
}

.illust-dollar {
  top: 12%;
  right: 18%;
  background: rgba(52,211,153,0.15);
  color: #10B981;
  animation-delay: 0s;
}

.illust-euro {
  top: 18%;
  left: 15%;
  background: rgba(96,165,250,0.15);
  color: #3B82F6;
  animation-delay: 1s;
}

.illust-percent {
  top: 40%;
  left: 8%;
  background: rgba(251,191,36,0.15);
  color: #F59E0B;
  animation-delay: 0.5s;
}

.illust-gear {
  bottom: 35%;
  right: 10%;
  background: rgba(156,163,175,0.15);
  color: #6B7280;
  animation-delay: 1.5s;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.illust-people {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  z-index: 5;
}

.illust-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: personBob 3s ease-in-out infinite;
}

.illust-person.p1 { animation-delay: 0s; }
.illust-person.p2 { animation-delay: 0.8s; }
.illust-person.p3 { animation-delay: 1.6s; }

.person-head {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FBBF24;
  margin-bottom: -4px;
  z-index: 1;
  order: -1;
}

.person-body {
  width: 32px;
  height: 44px;
  background: var(--suit);
  border-radius: 8px 8px 4px 4px;
}

.person-item {
  font-size: 0.65rem;
  color: var(--mid-gray);
  margin-top: 4px;
}

@keyframes personBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* .why-image-badge was previously commented out, keep this for badge stat */

.why-image-badge .stat-number {
  font-size: 2rem;
}

.why-content .section-label {
  text-align: left;
}

.why-content .section-label::after {
  margin: var(--space-sm) 0 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.why-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.why-item:hover {
  background: var(--off-white);
  transform: translateX(10px);
}

/* Why Icon Style */
.why-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.15) 0%, rgba(19, 64, 116, 0.08) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.why-icon i {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
}

.why-item:hover .why-icon {
  background: var(--gradient-accent);
  transform: scale(1.1);
}

.why-item:hover .why-icon i {
  color: var(--primary-dark);
}

.why-item .icon-circle {
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
}

.why-item h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.why-item p {
  font-size: var(--fs-small);
  color: var(--mid-gray);
  margin: 0;
}

/* --------- Products Quick / Carousel --------- */
.products-quick {
  background: var(--off-white);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.products-carousel {
  position: relative;
  padding: 0 60px;
}

.carousel-viewport {
  overflow: hidden;
  padding: 20px 0 30px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 350px;
  padding: 0 14px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease,
              filter 0.5s ease;
  transform: scale(0.82);
  opacity: 0.45;
  filter: blur(1px);
  z-index: 1;
}

.carousel-slide.active {
  transform: scale(1.05);
  opacity: 1;
  filter: blur(0);
  z-index: 3;
}

.carousel-slide.adjacent {
  transform: scale(0.92);
  opacity: 0.75;
  filter: blur(0);
  z-index: 2;
}

.carousel-slide:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: blur(0);
  z-index: 4;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all var(--transition-base);
}

.product-card:hover .product-card-icon {
  transform: scale(1.1) rotateY(180deg);
}

.product-card-icon.business {
  background: rgba(11,37,69,0.06);
  color: var(--primary);
}

.product-card-icon.msme {
  background: rgba(212,168,67,0.1);
  color: var(--accent);
}

.product-card-icon.personal {
  background: rgba(40,167,69,0.08);
  color: var(--success);
}

.product-card-icon.lap {
  background: rgba(23,162,184,0.08);
  color: var(--info);
}

.product-card-icon.vehicle {
  background: rgba(108,117,125,0.08);
  color: #495057;
}

.product-card-icon.supply {
  background: rgba(111,66,193,0.08);
  color: #6F42C1;
}

.product-card-icon.machinery {
  background: rgba(230,126,34,0.08);
  color: #E67E22;
}

.product-card-icon.housing {
  background: rgba(46,204,113,0.08);
  color: #27AE60;
}

.product-card h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.product-card p {
  font-size: var(--fs-small);
  color: var(--mid-gray);
  margin-bottom: var(--space-xl);
}

/* Product Features List - Improved Styling */
.product-card .product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
  text-align: left;
}

.product-card .product-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--fs-small);
  color: var(--dark-gray);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-xs);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.04) 0%, rgba(19, 64, 116, 0.02) 100%);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
  transition: all var(--transition-fast);
}

.product-card .product-features li:hover {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.08) 0%, rgba(19, 64, 116, 0.04) 100%);
  transform: translateX(4px);
}

.product-card .product-features li i {
  width: 20px;
  height: 20px;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 0.65rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.3);
}

.product-card .card-features {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.product-card .card-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--dark-gray);
  padding: var(--space-xs) 0;
}

.product-card .card-features li i {
  color: var(--accent);
  font-size: 0.8rem;
}

.product-card .btn {
  width: 100%;
}

/* Card content show/hide for carousel */
.carousel-slide .product-card .product-features,
.carousel-slide .product-card .card-features,
.carousel-slide .product-card .btn {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease,
              margin 0.4s ease;
}

.carousel-slide.active .product-card .product-features,
.carousel-slide.active .product-card .card-features,
.carousel-slide.active .product-card .btn,
.carousel-slide:hover .product-card .product-features,
.carousel-slide:hover .product-card .card-features,
.carousel-slide:hover .product-card .btn {
  max-height: 400px;
  opacity: 1;
}

.carousel-slide.active .product-card .product-features,
.carousel-slide.active .product-card .card-features,
.carousel-slide:hover .product-card .product-features,
.carousel-slide:hover .product-card .card-features {
  margin-bottom: var(--space-xl);
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--light-gray);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  transition: all var(--transition-base);
  cursor: pointer;
}

.carousel-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* --------- How It Works --------- */
.steps-section {
  position: relative;
  padding: var(--space-3xl) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: flex-start;
  justify-items: center;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 var(--space-md);
}

.step-circle-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.4rem;
  color: var(--accent);
  transition: all var(--transition-base);
  position: relative;
}

.step-card:hover .step-number {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.15);
  box-shadow: var(--shadow-accent);
}

.step-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 2px solid var(--white);
}

/* Connector line between steps */
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px; /* centers at circle vertical center */
  height: 0;
}

.connector-line {
  width: 100%;
  min-width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  position: relative;
}

.step-card h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: var(--fs-small);
  color: var(--mid-gray);
}

/* --------- Testimonials --------- */
.testimonials {
  background: var(--gradient-dark);
  color: var(--white);
  overflow: hidden;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card {
  padding: var(--space-2xl);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: rgba(255,255,255,0.9);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: var(--font-primary);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-author-info h5 {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
}

.testimonial-author-info span {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* --------- CTA Section --------- */
.cta-section {
  background: var(--off-white);
  text-align: center;
  padding: var(--space-3xl) 0;
}

.cta-box {
  background: var(--gradient-hero);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
}

.cta-content-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-text {
  text-align: left;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.cta-text p {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: var(--space-2xl);
}

/* CTA Animated Illustration */
.cta-illustration {
  position: relative;
}

.cta-square-image {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 20px;
  display: block;
  margin-left: auto;
}

.cta-illust-scene {
  position: relative;
  width: 100%;
  height: 240px;
}

.illust-piggy-wrap {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.illust-piggy {
  font-size: 4rem;
  color: #F9A8D4;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  animation: piggyBounce 2s ease-in-out infinite;
}

@keyframes piggyBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(-3deg); }
  75% { transform: translateY(-4px) rotate(3deg); }
}

.illust-coin-drop {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  color: #FBBF24;
  font-size: 1.2rem;
  animation: coinDrop 2s ease-in-out infinite;
}

@keyframes coinDrop {
  0% { transform: translateX(-50%) translateY(-20px); opacity: 0; }
  30% { opacity: 1; }
  60% { transform: translateX(-50%) translateY(5px); opacity: 1; }
  80%, 100% { transform: translateX(-50%) translateY(5px); opacity: 0; }
}

.illust-bar-mini {
  position: absolute;
  bottom: 20px;
  right: 10%;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  z-index: 2;
}

.mini-bar {
  width: 14px;
  height: var(--h);
  background: linear-gradient(180deg, rgba(212,168,67,0.8), rgba(212,168,67,0.4));
  border-radius: 3px 3px 0 0;
  animation: miniBarGrow 1.5s ease forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

.mini-bar:nth-child(1) { animation-delay: 0.2s; }
.mini-bar:nth-child(2) { animation-delay: 0.4s; }
.mini-bar:nth-child(3) { animation-delay: 0.6s; }
.mini-bar:nth-child(4) { animation-delay: 0.8s; }
.mini-bar:nth-child(5) { animation-delay: 1.0s; }

@keyframes miniBarGrow {
  to { transform: scaleY(1); }
}

.cta-float-coin, .cta-float-person {
  position: absolute;
  z-index: 4;
  animation: floatIcon 3s ease-in-out infinite;
}

.cta-float-coin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.c1 {
  top: 10%;
  left: 10%;
  background: rgba(251,191,36,0.2);
  color: #FBBF24;
  animation-delay: 0s;
}

.c2 {
  top: 5%;
  right: 15%;
  background: rgba(52,211,153,0.2);
  color: #34D399;
  animation-delay: 1s;
}

.c3 {
  bottom: 15%;
  left: 8%;
  background: rgba(96,165,250,0.2);
  color: #60A5FA;
  animation-delay: 2s;
}

.cta-float-person {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
}

.fp1 {
  bottom: 10%;
  left: 25%;
  animation-delay: 0.5s;
}

.fp2 {
  bottom: 10%;
  right: 25%;
  animation-delay: 1.5s;
}

.illust-checklist {
  position: absolute;
  bottom: 25px;
  left: 10%;
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  animation: floatIcon 4s ease-in-out infinite;
  animation-delay: 0.8s;
}

/* --------- News & Media Section --------- */
.news-media-section {
  background: var(--gradient-section);
  padding: var(--space-4xl) 0;
}

.news-coming-soon {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.news-coming-soon img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.news-coming-soon p {
  color: var(--mid-gray);
  font-size: var(--fs-base);
  margin: 0;
}

/* --------- Responsive Hero --------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {display: none;}

  .hero-description {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .steps-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-lg) 0;
  }

  .steps-grid .step-card:nth-child(n+8) {
    grid-column: 1 / -1;
  }

  .steps-grid .step-connector:nth-child(6) {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 300px;
  }

  .products-carousel {
    padding: 0 50px;
  }

  .cta-content-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text {
    text-align: center;
  }

  .cta-illustration {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-3xl);
  }

  .hero .container {
    padding-top: var(--space-md);
    gap: var(--space-xl);
  }

  .hero-content {
    padding: var(--space-md) 0 0;
  }

  .hero-brand-name {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    margin-bottom: var(--space-xs);
  }

  .hero-hindi-tagline {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: var(--space-md);
  }

  .hero-title {
    font-size: clamp(1.4rem, 5.5vw, 1.9rem);
    line-height: 1.35;
    margin-bottom: var(--space-xl);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: var(--space-md);
  }

  .hero-actions .btn {
    width: min(320px, 100%);
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .trust-bar-content {
    gap: var(--space-xl);
  }

  .why-section .grid-2 {
    grid-template-columns: 1fr;
  }

  .why-illustration {
    max-height: 280px;
  }

  .why-image {
    max-height: 300px;
  }

  .why-image img {
    height: 300px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .step-connector {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 260px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .products-carousel {
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    flex: 0 0 240px;
  }

  .products-carousel {
    padding: 0 20px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
}

/* --------- Viewport-fit: compact section headers & spacing --------- */
.products-quick .section-header,
.steps-section .section-header {
  margin-bottom: var(--space-lg);
}

.products-quick .section-header .section-subtitle,
.steps-section .section-header .section-subtitle {
  margin-bottom: 0;
}

.steps-section .steps-cta {
  margin-top: var(--space-xl);
}

.why-content .section-title {
  margin-bottom: var(--space-sm);
}

.why-content > p {
  margin-bottom: 0;
}

.product-card {
  min-height: auto;
}
