/* Seller Landing Page Styles */

/* Fonts werden über unified-inter-font.css geladen */

/* CSS Variables - Lila-Weiß Theme */
:root {
  --primary-color: #66228A;
  --primary-dark: #4C1B6B;
  --primary-light: #E8D5F2;
  --secondary-color: #8B5CF6;
  --accent-color: #F59E0B;
  --accent-purple: #A855F7;
  --accent-pink: #EC4899;
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --text-white: #ffffff;
  --bg-light: #FAFAFA;
  --bg-dark: #111827;
  --bg-purple-light: #F3F4F6;
  --border-color: #E5E7EB;
  --border-purple: #C4B5FD;
  --shadow-sm: 0 1px 2px 0 rgb(102 34 138 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(102 34 138 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(102 34 138 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(102 34 138 / 0.1);
  --shadow-purple: 0 10px 25px -5px rgb(102 34 138 / 0.25);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font wird über unified-inter-font.css definiert */

/* Hero Section */
.seller-hero {
  position: relative;
  min-height: 90vh;
  background: radial-gradient(at 0% 100%,rgba(102, 34, 138, 0.5) 0px, transparent 50%),
  radial-gradient(at 100% 100%,rgba(148, 39, 238, 0.5) 0px, transparent 50%);
  background-color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0 6rem 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}



.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.hero-content {
  align-self: center;
  margin-top: 5rem;
  position: relative;
  z-index: 50;
  width: 100%;
  text-align: center;
  
  transform: translateY(0);
}

/* Hero Brand */
.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.brand-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-white);
}

.brand-icon svg {
  width: 20px;
  height: 20px;
}

.brand-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Hero Headline */


.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.highlight-text {
  background: linear-gradient(120deg, rgba(252, 211, 77, 0.4) 25%, rgba(245, 158, 11, 0.0) 100%);
  color: var(--primary-color);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-pink) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.highlight-blue {
  color: var(--primary-color);
  font-weight: 600;
}



/* Hero CTA Buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, #66228A 0%, #7B2FA5 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(102, 34, 138, 0.35);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hero-primary::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;
  z-index: -1;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #7B2FA5 0%, #8B3BB5 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 34, 138, 0.45);
  color: white;
  text-decoration: none;
}

.btn-hero-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(102, 34, 138, 0.35);
}

.btn-hero-secondary {
  background: white;
  color: #66228A;
  border: 2px solid #66228A;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(102, 34, 138, 0.06);
}

.btn-hero-secondary:hover {
  background: #66228A;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(102, 34, 138, 0.18);
  text-decoration: none;
}

.btn-hero-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(102, 34, 138, 0.12);
}

.btn-hero-secondary i {
  font-size: 13px;
}

@media (max-width: 768px) {
  .btn-hero-primary {
    width: 100%;
    justify-content: center;
    max-width: 100%;
    padding: 16px 32px;
    font-size: 1.25rem;
    white-space: nowrap;
    font-weight: 700;
    gap: 10px;
  }
  
  .btn-hero-primary i {
    font-size: 1.25rem;
  }
  
  .btn-hero-secondary {
    width: auto !important;
    max-width: fit-content !important;
    justify-content: center;
    padding: 6px 14px !important;
    font-size: 0.875rem !important;
    font-weight: 600;
    gap: 4px;
    border-radius: 8px;
    border-width: 2px;
    margin: 0 auto;
  }
  
  .btn-hero-secondary i {
    font-size: 0.875rem !important;
  }
}

@media (max-width: 576px) {
  .hero-cta {
    margin-bottom: 3rem;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    margin-bottom: 5rem !important;
    gap: 20px;
  }
  
  .btn-hero-primary {
    width: 100%;
    padding: 16px 28px;
    font-size: 1.25rem;
    gap: 8px;
    white-space: nowrap;
  }
  
  .btn-hero-primary i {
    font-size: 1.2rem;
  }
  
  .btn-hero-secondary {
    width: auto !important;
    max-width: fit-content !important;
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
    gap: 4px;
  }
  
  .btn-hero-secondary i {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 360px) {
  .btn-hero-primary {
    width: 100%;
    padding: 14px 24px;
    font-size: 1.15rem;
    gap: 6px;
    white-space: nowrap;
  }
  
  .btn-hero-primary i {
    font-size: 1.1rem;
  }
  
  .btn-hero-secondary {
    width: auto !important;
    max-width: fit-content !important;
    padding: 5px 10px !important;
    font-size: 0.75rem !important;
  }
  
  .btn-hero-secondary i {
    font-size: 0.75rem !important;
  }
}

/* Problem Solution Transformation Section */
.problem-solution-section {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.3) 0%, rgba(255, 255, 255, 0.51) 50%, rgba(102, 34, 138, 0.3) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(239, 68, 68, 0.25);
}

.problem-solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(102, 34, 138, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.ps-section {
  position: relative;
  z-index: 1;
}

.ps-header {
  text-align: center;
  margin-bottom: 40px;
}

.ps-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  line-height: 1.2;
}

.ps-title-problem {
  color: #EF4444;
}

.ps-title-solution {
  color: #66228A;
}

.ps-title-line {
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 2px;
}

.ps-title-problem .ps-title-line {
  background: linear-gradient(90deg, #EF4444, #F87171);
}

.ps-title-solution .ps-title-line {
  background: linear-gradient(90deg, #66228A, #A855F7);
}

.ps-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  margin-top: 8px;
}

.ps-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.ps-card {
  background: white;
  border-radius: 14px;
  padding: 20px 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ps-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  transition: height 0.3s ease;
}

.ps-card-problem::before {
  background: linear-gradient(90deg, #FCA5A5, #EF4444);
}

.ps-card-solution::before {
  background: linear-gradient(90deg, #C4B5FD, #66228A);
}

.ps-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.ps-card:hover::before {
  height: 6px;
}

.ps-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.ps-card-icon i {
  font-size: 24px;
}

.ps-icon-problem {
  background: linear-gradient(135deg, #FEE2E2, #FECACA);
  color: #EF4444;
}

.ps-icon-solution {
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
  color: #66228A;
}

.ps-card:hover .ps-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.ps-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.ps-card-problem .ps-card-title {
  color: #991B1B;
}

.ps-card-solution .ps-card-title {
  color: #66228A;
}

.ps-card-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Transformation Arrow */
.ps-transformation {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ps-arrow-container {
  position: relative;
  z-index: 2;
}

.ps-arrow-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #66228A, #A855F7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(102, 34, 138, 0.4);
  animation: pulseArrow 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.ps-arrow-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 40px rgba(102, 34, 138, 0.5);
}

@keyframes pulseArrow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.ps-arrow-circle i {
  animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* CTA Section */
.ps-cta-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.ps-cta-card {
  background: white;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 36px 40px;
  text-align: center;
  border: 2px solid rgba(102, 34, 138, 0.15);
  box-shadow: 0 20px 60px rgba(102, 34, 138, 0.15);
  max-width: 700px;
  width: 100%;
  transition: all 0.4s ease;
}

.ps-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(102, 34, 138, 0.2);
  border-color: rgba(102, 34, 138, 0.25);
}

.ps-cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ps-cta-title .highlight-gradient {
  background: linear-gradient(135deg, #66228A 0%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.ps-cta-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 24px;
}

.ps-cta-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.ps-cta-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1F2937;
  font-weight: 500;
}

.ps-cta-benefit i {
  color: #10B981;
  font-size: 16px;
}

.ps-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #66228A, #A855F7);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(102, 34, 138, 0.35);
  position: relative;
  overflow: hidden;
}

.ps-cta-button::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;
}

.ps-cta-button:hover::before {
  left: 100%;
}

.ps-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 34, 138, 0.45);
  color: white;
  text-decoration: none;
}

.ps-cta-button i {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.ps-cta-button:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .ps-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .problem-solution-section {
    padding: 80px 0;
  }
  
  .ps-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .ps-card {
    padding: 24px 20px;
  }
  
  .ps-cta-card {
    padding: 40px 48px;
  }
  
  .ps-cta-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .problem-solution-section {
    padding: 60px 0;
  }
  
  .ps-header {
    margin-bottom: 40px;
  }
  
  .ps-title {
    font-size: 2rem;
  }
  
  .ps-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ps-card {
    padding: 24px;
    border-radius: 16px;
  }
  
  .ps-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }
  
  .ps-card-title {
    font-size: 1.25rem;
  }
  
  .ps-card-text {
    font-size: 0.95rem;
  }
  
  .ps-transformation {
    margin: 40px 0;
  }
  
  .ps-arrow-circle {
    width: 64px;
    height: 64px;
  }
  
  .ps-arrow-circle i {
    font-size: 24px;
  }
  
  .ps-cta-wrapper {
    margin-top: 60px;
  }
  
  .ps-cta-card {
    padding: 32px 24px;
    border-radius: 20px;
  }
  
  .ps-cta-title {
    font-size: 1.5rem;
  }
  
  .ps-cta-subtitle {
    font-size: 0.95rem;
  }
  
  .ps-cta-benefits {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .ps-cta-button {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .problem-solution-section {
    padding: 50px 0;
  }
  
  .ps-header {
    margin-bottom: 32px;
  }
  
  .ps-title {
    font-size: 1.75rem;
  }
  
  .ps-subtitle {
    font-size: 1rem;
  }
  
  .ps-card {
    padding: 20px;
    border-radius: 14px;
  }
  
  .ps-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }
  
  .ps-card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .ps-card-text {
    font-size: 0.875rem;
  }
  
  .ps-transformation {
    margin: 32px 0;
  }
  
  .ps-arrow-circle {
    width: 56px;
    height: 56px;
  }
  
  .ps-arrow-circle i {
    font-size: 20px;
  }
  
  .ps-cta-wrapper {
    margin-top: 50px;
  }
  
  .ps-cta-card {
    padding: 28px 20px;
    border-radius: 18px;
  }
  
  .ps-cta-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }
  
  .ps-cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .ps-cta-benefits {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .ps-cta-benefit {
    font-size: 13px;
  }
  
  .ps-cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
    gap: 8px;
    width: 100%;
    justify-content: center;
  }
  
  .ps-cta-button i {
    font-size: 16px;
  }
}

/* Hero Benefits Cards */
.hero-benefits-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin: 1.5rem auto 1.5rem;
  max-width: 900px;
  flex-wrap: wrap;
}

.benefit-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: white;
  border: 1px solid #C4B5FD;
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 34, 138, 0.06);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(102, 34, 138, 0.12);
  border-color: #A855F7;
}

.benefit-header {
  font-size: 1.75rem;
  font-weight: 800;
  color: #66228A;
  margin-bottom: 8px;
  line-height: 1.1;
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 6px;
  line-height: 1.2;
}

.benefit-description {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.4;
}

/* Hero Trust Points */
.hero-trust-points {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 1rem auto 1.5rem;
  flex-wrap: wrap;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #66228A;
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-point svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.trust-point span {
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-benefits-cards {
    max-width: 750px;
  }
  
  .benefit-card {
    min-width: 200px;
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  .hero-benefits-cards {
    gap: 12px;
    margin: 1.5rem auto 1.25rem;
    padding: 0 1rem;
    max-width: 100%;
  }
  
  .benefit-card {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    max-width: none;
    padding: 16px 12px;
  }
  
  .benefit-card:last-child {
    flex: 1 1 100%;
  }
  
  .hero-trust-points {
    gap: 16px;
    margin: 1rem auto 1.25rem;
    padding: 0 1rem;
  }
  
  .trust-point {
    font-size: 0.85rem;
  }
  
  .trust-point svg {
    width: 16px;
    height: 16px;
  }
  
  .benefit-header {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  
  .benefit-title {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  
  .benefit-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-benefits-cards {
    flex-direction: column;
    gap: 10px;
    margin: 1.25rem auto 1rem;
    padding: 0 1rem;
  }
  
  .benefit-card {
    flex: 1 1 100%;
    padding: 14px 12px;
    border-radius: 10px;
  }
  
  .hero-trust-points {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin: 0.75rem auto 1rem;
  }
  
  .trust-point {
    font-size: 0.8rem;
  }
  
  .trust-point svg {
    width: 15px;
    height: 15px;
  }
  
  .benefit-header {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  
  .benefit-title {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  
  .benefit-description {
    font-size: 0.75rem;
  }
}

.hero-disclaimer {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
}

.hero-disclaimer a {
  color: var(--primary-color);
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--text-white);
}

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-outline:hover {
  background: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}



/* Hero Video Section */
.hero-video-section {
  padding: 0 0 4rem 0;
  background: var(--text-white);
  margin-top: -25vh;
  position: relative;
  z-index: 10;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--border-purple);
  transform: translateY(-10vh);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Video Controls */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 3rem 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 4;
  transform: translateY(10px);
}

.video-container:hover .video-controls {
  opacity: 1;
  transform: translateY(0);
}

/* Fullscreen Button (Bottom Right) */
.fullscreen-control {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
}

.video-container:hover .fullscreen-control {
  opacity: 1;
  transform: translateY(0);
}

/* Permanent Volume Control (Top Left) */
.permanent-volume-control {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.75rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container:hover .permanent-volume-control {
  opacity: 1;
  transform: translateY(0);
}

.control-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.control-btn:active {
  transform: scale(0.95);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.volume-slider {
  width: 100px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Video Section (for the second video) */
.video-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
  position: relative;
}

.video-section-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.video-text-content {
  max-width: 700px;
  margin: 0 auto;
}

.video-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.video-description {
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 22px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-wrapper.visible {
  transform: translateY(0);
  opacity: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 34, 138, 0.8), rgba(139, 92, 246, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-content {
  text-align: center;
  color: var(--text-white);
  max-width: 600px;
  padding: 2rem;
}

.video-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.video-content p {
  font-size: 1.25rem;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}



/* Value Proposition Section */
.value-proposition {
  padding: 6rem 0;
  background: linear-gradient(0deg, rgba(102, 34, 138, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
  border-bottom: 1px solid rgba(102, 34, 138, 0.18);
  border-top: none;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.section-subtitle {
  font-size: 1.125rem;
  color: #66228A;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 600;
}

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

.value-card {
  background: var(--text-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid var(--border-color);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.value-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--text-white), var(--primary-light));
  box-shadow: var(--shadow-purple);
}

.value-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.value-features {
  list-style: none;
}

.value-features li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  font-weight: 500;
}

/* Business Tools Showcase */
.business-tools-showcase {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--bg-purple-light) 100%);
  position: relative;
  overflow: hidden;
}

.business-tools-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(102,34,138,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.tool-card {
  background: var(--text-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tool-card:hover::before {
  transform: scaleX(1);
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.tool-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, var(--text-white) 0%, rgba(102, 34, 138, 0.05) 100%);
}

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

.tool-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.tool-badge {
  background: linear-gradient(135deg, #ffd600, #ffed4e);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tool-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.tool-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tool-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateX(5px);
}

.feature-item i {
  font-size: 1rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.feature-item:hover i {
  color: var(--text-white);
}

.feature-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Demo Section */
.demo-section {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-xl);
  color: var(--text-white);
}

.demo-container {
  text-align: center;
}

.demo-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.demo-header p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.demo-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.demo-screenshot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.demo-image {
  width: 100%;
  height: auto;
  display: block;
}

.demo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.demo-screenshot:hover .demo-overlay {
  opacity: 1;
}

.demo-play-btn {
  width: 80px;
  height: 80px;
  background: var(--text-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.demo-play-btn:hover {
  transform: scale(1.1);
  background: var(--primary-color);
  color: var(--text-white);
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.demo-feature i {
  font-size: 1.25rem;
  color: #ffd600;
}

.demo-feature span {
  font-weight: 500;
}

/* Success Stories */
.success-stories {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--primary-light) 100%);
}

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

.story-card {
  background: var(--text-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

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

.seller-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.seller-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.seller-info p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.rating {
  color: var(--accent-color);
  font-weight: 600;
}

.story-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.story-stats {
  display: flex;
  gap: 1rem;
}

.story-stats span {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-light) 100%);
}

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

.pricing-card {
  background: var(--text-white);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--text-white), var(--primary-light));
  box-shadow: var(--shadow-purple);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--text-white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.price {
  margin-bottom: 2rem;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
}

.period {
  color: var(--text-light);
  font-size: 1.125rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* CTA Section - Moved to enhanced section below */

/* Demo Modal */
.demo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--text-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.close:hover {
  color: var(--text-dark);
}

.modal-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.modal-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-form input {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
}

.demo-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .seller-hero {
    min-height: 75vh;
    padding: 3rem 0 6rem 0;
  }
  
  .hero-content {
    transform: translateY(0);
    margin-top: 5rem;
  }
  
  .hero-video-section {
    margin-top: -18vh;
  }
  
  .video-container {
    width: 95%;
    transform: translateY(-6vh);
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem !important;
    padding: 0 1rem;
    line-height: 0.8 !important;
  }

  .hero-subtitle-text {
    padding: 0 1rem;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem;
  }
  
  .hero-cta {
    padding: 0 1rem;
    margin-bottom: 5rem;
    gap: 16px;
  }
  
  .brand-icon {
    width: 35px;
    height: 35px;
  }
  
  .brand-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .video-header h2 {
    font-size: 2rem;
  }
  
  .video-header p {
    font-size: 1.125rem;
    padding: 0 1rem;
  }
  
  .video-wrapper {
    width: 95%;
  }
  
  .proof-content {
    flex-direction: column;
    text-align: center;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .tool-features {
    grid-template-columns: 1fr;
  }
  
  .demo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .demo-header h3 {
    font-size: 2rem;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    margin-top: 4rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin-bottom: 0px !important;
  }
  
  .brand-icon {
    width: 30px;
    height: 30px;
  }
  
  .brand-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Fun CTA Section Styles */
.fun-cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(0deg, rgba(102, 34, 138, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
  overflow: hidden;
}

.fun-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.fun-text-content {
  width: 100%;
}

.fun-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 34, 138, 0.1);
  color: #6366f1;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(102, 34, 138, 0.2);
}

.badge-icon {
  font-size: 16px;
}

.badge-icon i {
  font-size: 18px;
}

.fun-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1e293b;
}

.highlight-fun {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fun-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.fun-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.fun-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(102, 34, 138, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 160px;
}

.fun-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(102, 34, 138, 0.15);
}

.stat-emoji {
  font-size: 2rem;
}

.stat-emoji i {
  font-size: 2rem;
}

.stat-text {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  text-align: center;
}

.fun-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-fun-primary {
  background: linear-gradient(135deg, #66228A, #A855F7);
  border: none;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(102, 34, 138, 0.3);
}

.btn-fun-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 34, 138, 0.4);
  color: white;
}

.btn-fun-secondary {
  background: white;
  border: 2px solid #66228A;
  color: #66228A;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-fun-secondary:hover {
  background: #66228A;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 34, 138, 0.2);
  text-decoration: none;
}

.fun-footer-text {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

.fun-footer-text i {
  font-size: 16px;
  margin-right: 4px;
}

.fun-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  display: none;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 34, 138, 0.1), rgba(168, 85, 247, 0.1));
  animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bg-circle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.bg-circle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .fun-cta-section {
    padding: 80px 0;
  }
  
  .fun-title {
    font-size: 2.25rem;
  }
  
  .fun-description {
    font-size: 1.125rem;
  }
  
  .fun-stats {
    gap: 20px;
  }
  
  .fun-stat {
    min-width: 140px;
    padding: 16px;
  }
  
  .fun-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-fun-primary,
  .btn-fun-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .fun-cta-section {
    padding: 60px 0;
  }
  
  .fun-title {
    font-size: 1.875rem;
  }
  
  .fun-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .fun-stat {
    width: 100%;
    max-width: 250px;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%236366f1" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.faq-container {
  position: relative;
  z-index: 2;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(102, 34, 138, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(102, 34, 138, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(102, 34, 138, 0.15);
  border-color: rgba(102, 34, 138, 0.2);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(102, 34, 138, 0.1);
}

.faq-question:hover {
  background: rgba(102, 34, 138, 0.05);
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 16px;
}

.faq-question i {
  color: #6366f1;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 24px 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 24px 24px 24px;
}

.faq-answer p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.faq-cta {
  margin-top: 16px;
}

.faq-cta .btn {
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 34, 138, 0.3);
}

.faq-bottom-cta {
  margin-top: 60px;
}

.faq-cta-card {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  border-radius: 32px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(102, 34, 138, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,10 25,20 15,25 5,20 5,10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
  z-index: 0;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 5;
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-cta-card h3 {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.faq-cta-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.cta-feature i {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button-wrapper {
  margin-bottom: 40px;
}

.btn-cta-primary {
  background: white;
  color: #6366f1;
  border: none;
  padding: 20px 40px;
  font-size: 1.125rem;
  font-weight: 800;
  border-radius: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: #6366f1;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .faq-column {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }
  
  .faq-question {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    padding-right: 0;
    margin-bottom: 0;
  }
  
  .faq-question i {
    align-self: flex-end;
    margin-top: -8px;
  }
  
  .faq-answer {
    padding: 0 20px 20px 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
  
  .faq-cta {
    margin-top: 20px;
  }
  
  .faq-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .faq-cta-card {
    padding: 32px 24px;
  }
  
  .faq-cta-card h3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .faq-cta-card p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    padding: 16px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-question {
    padding: 16px;
    gap: 8px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .faq-question i {
    font-size: 1.1rem;
  }
  
  .faq-answer {
    padding: 0 16px 16px 16px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 16px 16px 16px;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .faq-cta {
    margin-top: 16px;
  }
  
  .faq-cta .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .faq-cta-card {
    padding: 24px 16px;
    border-radius: 20px;
  }
  
  .faq-cta-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  
  .faq-cta-card p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  
  .cta-buttons .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-question {
    padding: 14px;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 0 14px 14px 14px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 14px 14px 14px;
  }
  
  .faq-cta-card {
    padding: 20px 12px;
  }
  
  .faq-cta-card h3 {
    font-size: 1.1rem;
  }
  
  .faq-cta-card p {
    font-size: 0.9rem;
  }
}

/* Statistics Section Styles */
.statistics-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(102, 34, 138, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 20px 24px 16px 24px;
  text-align: center;
  border: 1px solid rgba(102, 34, 138, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(102, 34, 138, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 34, 138, 0.15);
  border-color: rgba(102, 34, 138, 0.2);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px auto;
  background: linear-gradient(135deg, #66228A, #A855F7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(102, 34, 138, 0.3);
}

.stat-content {
  flex: 1;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

.stat-symbol {
  font-size: 1.5rem;
  font-weight: 700;
  color: #66228A;
  line-height: 1;
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.3;
}

.stat-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-card {
    padding: 18px 20px 14px 20px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-symbol {
    font-size: 1.25rem;
  }
  
  .stat-title {
    font-size: 0.9rem;
  }
  
  .stat-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .statistics-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-card {
    padding: 16px 20px 12px 20px;
    border-radius: 12px;
  }
  
  .stat-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 18px;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-symbol {
    font-size: 1.1rem;
  }
  
  .stat-title {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .stat-description {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .statistics-section {
    padding: 50px 0;
  }
  
  .stat-card {
    padding: 14px 16px 10px 16px;
  }
  
  .stat-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-symbol {
    font-size: 1rem;
  }
  
  .stat-title {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  
  .stat-description {
    font-size: 0.75rem;
  }
}

/* FAQ CTA Responsive Styles */
@media (max-width: 768px) {
  .faq-cta-card {
    padding: 40px 32px;
    border-radius: 24px;
  }
  
  .cta-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .faq-cta-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .faq-cta-card p {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }
  
  .cta-features {
    gap: 24px;
    margin-bottom: 32px;
  }
  
  .cta-feature {
    font-size: 0.9rem;
  }
  
  .btn-cta-primary {
    padding: 18px 32px;
    font-size: 1rem;
  }
  
  .cta-trust {
    gap: 24px;
  }
  
  .trust-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .faq-cta-card {
    padding: 32px 24px;
    border-radius: 20px;
  }
  
  .cta-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .faq-cta-card h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
  
  .faq-cta-card p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .cta-feature {
    font-size: 0.85rem;
  }
  
  .btn-cta-primary {
    padding: 16px 28px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  
  .cta-trust {
    flex-direction: column;
    gap: 16px;
  }
  
  .trust-item {
    font-size: 0.8rem;
  }
}

/* CTA Section Styles */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(102, 34, 138, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
  position: relative;
  overflow: hidden;
}

.cta-glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.cta-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #66228A, #A855F7);
}

.cta-content {
  display: flex;
  padding: 40px;
  gap: 40px;
  align-items: center;
}

.cta-left {
  flex: 1.2;
}

.cta-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-left p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-stats-row {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.cta-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #66228A, #A855F7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.cta-right {
  flex: 0.8;
}

.cta-action-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta-action-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.cta-action-card p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 24px;
}

.cta-action-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border: none;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cta-action-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  color: white;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
}

.check-icon {
  color: #10b981;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .cta-content {
    flex-direction: column;
    padding: 32px;
    gap: 32px;
  }
  
  .cta-left h2 {
    font-size: 28px;
  }
  
  .cta-left p {
    font-size: 16px;
  }
  
  .cta-stats-row {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
  }
  
  .stat-icon {
    width: 46px;
    height: 46px;
  }
  
  .stat-icon svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-content {
    padding: 24px;
  }
  
  .cta-left h2 {
    font-size: 24px;
  }
  
  .cta-stats-row {
    flex-direction: row !important;
    gap: 16px;
    margin-top: 24px;
  }
  
  .cta-stat {
    gap: 12px;
  }
  
  .stat-icon {
    width: 44px;
    height: 44px;
  }
  
  .stat-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .cta-action-card {
    padding: 24px;
  }
  
  .cta-action-card h3 {
    font-size: 20px;
  }
  
  .cta-action-card .btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* Video Scroll Bar Styles */
.video-scroll-bar {
  background: #66228A;
  padding: 16px 0;
  position: relative;
  z-index: 20;
  box-shadow: 0 4px 20px rgba(102, 34, 138, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-scroll-bar:hover {
  background: #7a2ba3;
}

.video-scroll-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
}

.video-scroll-text {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
}

.video-scroll-bar .highlight-text {
  position: relative;
  display: inline-block;
  color: white;
  z-index: 1;
}



.video-scroll-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .video-scroll-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .video-scroll-text {
    font-size: 1rem;
  }
  
  .video-scroll-bar {
    padding: 12px 0;
  }
  
  .video-scroll-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Video Section Styles */
.video-section {
  position: relative;
  width: 100%;
  padding: 160px 0 100px 0;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #66228A;
  margin-top: 0;
  z-index: 10;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.video-section .section-header {
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
  padding: 0 20px;
}

.video-section .section-title {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
}

.video-section .highlight-text {
  position: relative;
  display: inline-block;
  color: white;
  z-index: 1;
}

.video-section .highlight-text::before {
  content: '';
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: 0;
  height: 40%;
  background-color: rgba(255, 255, 255, 0.25);
  z-index: -1;
  transform: skewX(-5deg);
  border-radius: 3px;
}

.video-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.video-wrapper {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  overflow: visible;
}

.video-wrapper.visible {
  transform: translateY(0);
  opacity: 1;
}

.video-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  z-index: -1;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.video-description {
  margin-top: 32px;
  text-align: center;
}

.video-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.video-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.video-feature i {
  color: #66228A;
  font-size: 18px;
}

.video-feature span {
  font-size: 14px;
  font-weight: 600;
  color: #1a202c;
}

/* Responsive Design for Video Section */
@media (max-width: 768px) {
  .video-section {
    padding: 4rem 1.5rem;
    min-height: auto;
  }
  
  .video-section-content {
    gap: 2rem;
  }
  
  .video-title {
    font-size: 2.2rem;
  }
  
  .video-description {
    font-size: 1.05rem;
    padding: 0;
  }
  
  .video-wrapper {
    width: 95%;
  }
  
  .video-features {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .video-feature {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 6rem 1.5rem;
    min-height: auto;
  }
  
  .video-section-content {
    gap: 3rem;
  }
  
  .video-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .video-description {
    font-size: 1.125rem;
    padding: 0 1rem;
  }
  
  .video-wrapper {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 3rem 1rem;
  }
  
  .video-title {
    font-size: 1.8rem;
  }
  
  .video-description {
    font-size: 0.95rem;
    padding: 0;
  }
  
  .video-wrapper {
    width: 100%;
  }
}
  

  .video-features {
    gap: 12px;
  }
  
  .video-feature {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .video-feature i {
    font-size: 16px;
  }

/* ===================================
   ADDITIONAL STYLES FROM BLADE FILE
   =================================== */

/* Highlight Circle Effect */
.highlight-circle {
  display: inline-block;
  background: #66228A;
  color: white;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.9em;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(102, 34, 138, 0.3);
  position: relative;
  z-index: 1;
}

.highlight-circle::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #66228A, #A855F7);
  border-radius: 50px;
  z-index: -1;
  opacity: 0.8;
}

/* Trust Badges - Enhanced */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 1.5rem auto;
  max-width: 900px;
  width: 100%;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  padding: 8px;
}

.trust-badge:hover {
  transform: translateY(-3px);
}

.trust-badge img {
  filter: grayscale(0.2);
  transition: filter 0.3s ease;
  height: 60px;
  width: auto;
}

.trust-badge:hover img {
  filter: grayscale(0);
}

@media (max-width: 768px) {
  .trust-badges {
    gap: 20px;
    padding: 15px;
    flex-wrap: nowrap;
    margin: 0.5rem auto;
    overflow-x: auto;
  }
  
  .trust-badge {
    padding: 6px;
    flex-shrink: 0;
  }
  
  .trust-badge img {
    height: 45px !important;
  }
}

@media (max-width: 480px) {
  .trust-badges {
    gap: 15px;
    padding: 10px;
    margin: 0.25rem auto;
  }
  
  .trust-badge img {
    height: 40px !important;
  }
}

/* Hero CTA Buttons - Enhanced */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

/* Old styles removed - using btn-hero-secondary instead */

/* News Banner Styles - Enhanced */
.news-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #66228A;
  color: white;
  padding: 6px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.news-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.news-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.news-banner-text {
  font-size: 16px;
  font-weight: 400;
  color: white;
}

.news-banner-link {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.news-banner-link:hover {
  color: #f0f0f0;
  text-decoration: none;
  transform: scale(1.05);
}

.news-banner-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.news-banner-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.seller-landing-navbar {
  top: 50px;
}

@media (max-width: 768px) {
  .news-banner-content {
    padding: 0 15px;
    flex-wrap: wrap;
    text-align: center;
    gap: 4px;
  }
  
  .news-banner-text,
  .news-banner-link {
    font-size: 14px;
  }
  
  .news-banner-close {
    right: 15px;
    font-size: 18px;
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .news-banner {
    padding: 10px 0;
  }
  
  .news-banner-content {
    gap: 6px;
  }
  
  .news-banner-text,
  .news-banner-link {
    font-size: 13px;
  }
}

/* Video Scroll Bar */
.mw-video-scroll-bar {
  background-color: #ffffff;
  padding: 15px 0;
  cursor: pointer;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.3s ease;
}

.mw-video-scroll-bar:hover {
  background-color: #f6edf7;
}

.mw-video-scroll-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mw-video-scroll-text {
  font-size: 2rem;
  font-weight: 500;
  color: #1a202c;
}

.mw-video-scroll-highlight {
  background: linear-gradient(135deg, #66228A, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.mw-video-scroll-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #66228A;
  font-size: 2.6rem;
  line-height: 1;
  animation: bounce 2s infinite;
}

.mw-video-scroll-icon svg {
  width: 20px;
  height: 20px;
}

.mw-video-scroll-icon i {
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .mw-video-scroll-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .mw-video-scroll-text {
    font-size: 14px;
  }
  
  .mw-video-scroll-icon svg {
    width: 20px;
    height: 20px;
  }

  .mw-video-scroll-icon i {
    font-size: 2.2rem;
  }
}

/* Showcase Header */
.showcase-header {
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.showcase-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(102, 34, 138, 0.1), rgba(168, 85, 247, 0.1));
  color: #66228A;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid rgba(102, 34, 138, 0.2);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.showcase-label:hover {
  background: linear-gradient(135deg, rgba(102, 34, 138, 0.15), rgba(168, 85, 247, 0.15));
  border-color: rgba(102, 34, 138, 0.3);
}

.showcase-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 6px;
  margin-top: 0;
}

.showcase-header h2:first-of-type {
  margin-bottom: 4px;
}

.showcase-header p {
  font-size: 16px;
  color: #4a5568;
  margin-top: 8px;
  margin-bottom: 0;
}

/* App Interface */
.app-interface {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.app-top-bar {
  background: #f8fafc;
  padding: 16px;
  border-bottom: 1px solid #edf2f7;
}

.app-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
  border: none;
  color: #64748b;
  min-width: 80px;
}

.app-icon .icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
}

.app-icon span {
  font-size: 12px;
  font-weight: 500;
}

.app-icon:hover .icon-wrapper {
  background-color: #e2e8f0;
  transform: translateY(-2px);
}

.app-icon.active {
  color: #66228A;
}

.app-icon.active .icon-wrapper {
  background-color: #66228A;
  color: white;
  box-shadow: 0 4px 12px rgba(102, 34, 138, 0.4);
}

.app-content {
  position: relative;
  min-height: 400px;
}

.app-pane {
  display: none;
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateX(30px);
}

.app-pane.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.app-pane.slide-in {
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.app-pane-content {
  display: flex;
  padding: 30px;
  gap: 40px;
  align-items: center;
}

.app-screen {
  flex: 3;
  min-width: 0;
}

.app-screen img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.app-screen img:hover {
  transform: scale(1.02);
}

.app-description {
  flex: 2;
  padding: 20px;
}

.app-description h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a202c;
}

.app-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #4a5568;
}

.feature-list li svg.check-icon {
  color: #66228A;
  margin-right: 8px;
  vertical-align: -3px;
}

@media (max-width: 992px) {
  .app-pane-content {
    flex-direction: column;
    padding: 20px;
  }
  
  .app-description {
    padding: 15px 0;
  }
}

@media (max-width: 768px) {
  .showcase-label {
    font-size: 12px;
    letter-spacing: 1.2px;
    padding: 6px 16px;
  }
  
  .showcase-header h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .showcase-header h2:first-of-type {
    margin-bottom: 3px;
  }
  
  .showcase-header p {
    font-size: 15px;
  }
  
  .app-icons {
    gap: 10px;
  }
  
  .app-icon {
    min-width: 70px;
  }
  
  .app-icon .icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .app-icon span {
    font-size: 11px;
  }
  
  .app-pane-content {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .showcase-label {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 6px 14px;
  }
  
  .showcase-header h2 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .showcase-header h2:first-of-type {
    margin-bottom: 2px;
  }
  
  .showcase-header p {
    font-size: 14px;
  }
  
  .app-icons {
    gap: 5px;
  }
  
  .app-content {
    min-height: 500px;
  }
  
  .app-icon {
    min-width: 60px;
    padding: 6px;
  }
  
  .app-icon .icon-wrapper {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .app-description h3 {
    font-size: 20px;
  }
  
  .app-description p {
    font-size: 14px;
  }
  
  .feature-list li {
    font-size: 13px;
  }
}

/* ============================================
   Savings Calculator Component Styles
   ============================================ */

.savings-calculator-wrapper {
  padding: 50px 0;
  background: radial-gradient(at 0% 100%, rgba(102, 34, 138, 0.5) 0px, transparent 50%),
               radial-gradient(at 100% 100%, rgba(148, 39, 238, 0.5) 0px, transparent 50%);
  background-color: white;
  min-height: auto;
}

.savings-calculator-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.calc-header {
  text-align: center;
  margin-bottom: 30px;
}

.calc-header-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #6366F1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-header-icon i {
  display: block;
}

.calc-action-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #E8D5F2 0%, #D4B5E8 100%);
  border: none;
  border-radius: 18px;
  color: #66228A;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.calc-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 34, 138, 0.2);
}

.calc-action-button i {
  font-size: 14px;
}

.calc-main-title {
  font-size: 28px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 10px;
  line-height: 1.2;
}

.calc-subtitle {
  font-size: 15px;
  color: #6B7280;
  font-weight: 400;
}

/* Progress Indicator */
.calc-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.calc-progress-text {
  font-size: 14px;
  color: #1F2937;
  font-weight: 600;
  min-width: 90px;
}

.calc-progress-bar {
  flex: 1;
  height: 6px;
  background: #E5E7EB;
  border-radius: 3px;
  overflow: hidden;
}

.calc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #66228A 0%, #A855F7 100%);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.calc-progress-percent {
  font-size: 14px;
  color: #1F2937;
  font-weight: 600;
  min-width: 45px;
  text-align: right;
}

/* Form Card */
.calc-form-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  min-height: 350px;
}

/* Question Pages */
.calc-question-page {
  display: none;
  animation: fadeIn 0.4s ease;
}

.calc-question-page.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calc-question-text {
  font-size: 20px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 24px;
  line-height: 1.4;
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-option {
  display: block;
  cursor: pointer;
  outline: none;
}

.calc-option input[type="radio"] {
  display: none;
}

.calc-option input[type="radio"]:focus {
  outline: none;
}

.calc-option:focus-within .calc-option-content {
  outline: none;
}

.calc-option-content:focus {
  outline: none !important;
}

.calc-option-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.calc-option:hover .calc-option-content {
  border-color: #D4B5E8;
  background: #FAF5FF;
  transform: translateX(4px);
}

.calc-option.selected .calc-option-content {
  border-color: #66228A;
  background: linear-gradient(135deg, #FAF5FF 0%, #E8D5F2 100%);
  box-shadow: 0 4px 12px rgba(102, 34, 138, 0.15);
}

.calc-option-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #66228A;
  flex-shrink: 0;
}

.calc-option-icon i {
  display: block;
}

.calc-option-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #1F2937;
}

.calc-option-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #D1D5DB;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.calc-option.selected .calc-option-radio {
  border-color: #66228A;
  background: #66228A;
}

.calc-option.selected .calc-option-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

/* Result Page */
.calc-result-page {
  display: none;
  animation: fadeIn 0.4s ease;
}

.calc-result-page.active {
  display: block;
}

.calc-result-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
}

.calc-result-icon i {
  display: block;
}

.calc-result-title {
  font-size: 26px;
  font-weight: 700;
  color: #1F2937;
  text-align: center;
  margin-bottom: 10px;
}

.calc-result-subtitle {
  font-size: 14px;
  color: #6B7280;
  text-align: center;
  margin-bottom: 30px;
}

.calc-result-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.calc-metric-card {
  background: linear-gradient(135deg, #F0F4FF 0%, #E0E7FF 100%);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.calc-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.calc-metric-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: #6366F1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-metric-icon i {
  display: block;
}

.calc-metric-value {
  font-size: 28px;
  font-weight: 700;
  color: #66228A;
  margin-bottom: 6px;
}

.calc-metric-label {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
}

.calc-result-features {
  margin-bottom: 30px;
}

.calc-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: white;
  border-bottom: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}

.calc-feature-item:last-child {
  border-bottom: none;
}

.calc-feature-item:hover {
  background: #F8FAFF;
}

.calc-feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  flex-shrink: 0;
}

.calc-feature-icon i {
  display: block;
}

.calc-feature-content {
  flex: 1;
}

.calc-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 4px;
}

.calc-feature-text {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
}

.calc-result-cta {
  text-align: center;
}

.calc-cta-button {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, #66228A 0%, #A855F7 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(102, 34, 138, 0.3);
}

.calc-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 34, 138, 0.4);
  color: white;
  text-decoration: none;
}

.calc-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.calc-benefit {
  font-size: 13px;
  color: #6B7280;
}

.calc-benefit-dot {
  color: #9CA3AF;
}

.calc-repeat-link {
  background: none;
  border: none;
  color: #6B7280;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.calc-repeat-link:hover {
  color: #66228A;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .savings-calculator-wrapper {
    padding: 30px 0;
  }

  .calc-header {
    margin-bottom: 30px;
  }

  .calc-header-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .calc-header-icon i {
    font-size: 36px !important;
  }

  .calc-action-button {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 16px;
  }

  .calc-main-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .calc-subtitle {
    font-size: 14px;
  }

  .calc-form-card {
    padding: 24px;
    border-radius: 16px;
  }

  .calc-question-text {
    font-size: 20px;
  }

  .calc-progress {
    gap: 12px;
  }

  .calc-progress-text {
    font-size: 12px;
    min-width: 70px;
  }

  .calc-progress-percent {
    font-size: 12px;
    min-width: 35px;
  }

  .calc-result-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .calc-metric-card {
    padding: 16px;
  }

  .calc-metric-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
  }

  .calc-metric-icon i {
    font-size: 24px !important;
  }

  .calc-metric-value {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .calc-metric-label {
    font-size: 12px;
  }

  .calc-result-title {
    font-size: 22px;
  }

  .calc-result-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .calc-result-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .calc-result-icon i {
    font-size: 48px !important;
  }

  .calc-cta-button {
    padding: 16px 32px;
    font-size: 15px;
    width: 100%;
    max-width: 100%;
  }

  .calc-benefits {
    flex-direction: column;
    gap: 4px;
  }

  .calc-benefit-dot {
    display: none;
  }
}

@media (max-width: 576px) {
  .savings-calculator-wrapper {
    padding: 20px 0;
  }

  .calc-header {
    margin-bottom: 24px;
  }

  .calc-header-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .calc-header-icon i {
    font-size: 32px !important;
  }

  .calc-action-button {
    padding: 6px 14px;
    font-size: 11px;
    margin-bottom: 12px;
  }

  .calc-action-button i {
    font-size: 12px !important;
  }

  .calc-main-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .calc-subtitle {
    font-size: 13px;
  }

  .calc-form-card {
    padding: 20px;
  }

  .calc-question-text {
    font-size: 18px;
  }

  .calc-option-content {
    padding: 14px 16px;
  }

  .calc-option-text {
    font-size: 14px;
  }

  .calc-result-metrics {
    gap: 10px;
  }

  .calc-metric-card {
    padding: 14px;
  }

  .calc-metric-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
  }

  .calc-metric-icon i {
    font-size: 20px !important;
  }

  .calc-metric-value {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .calc-metric-label {
    font-size: 11px;
  }

  .calc-result-title {
    font-size: 18px;
  }

  .calc-result-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .calc-result-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .calc-result-icon i {
    font-size: 40px !important;
  }

  .calc-feature-title {
    font-size: 16px;
  }

  .calc-feature-text {
    font-size: 13px;
  }

  .calc-cta-button {
    padding: 14px 24px;
    font-size: 13px;
  }
}

/* ============================================
   Success Story Section Styles
   ============================================ */

.success-story-section {
  padding: 80px 0;
  background: radial-gradient(at 0% 0%, rgba(102, 34, 138, 0.5) 0px, transparent 50%),
               radial-gradient(at 100% 0%, rgba(148, 39, 238, 0.5) 0px, transparent 50%);
  background-color: white;
  position: relative;
  overflow: hidden;
}

.success-story-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.success-story-label {
  font-size: 13px;
  font-weight: 700;
  color: #6B7280;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.success-story-title {
  font-size: 36px;
  font-weight: 700;
  color: #1F2937;
  line-height: 1.2;
}

.success-story-title .highlight-purple {
  color: #66228A;
}

.success-story-card {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  position: relative;
  z-index: 2;
}

.story-testimonial {
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.story-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.story-rating i {
  color: #66228A;
  font-size: 20px;
}

.story-quote {
  font-size: 18px;
  line-height: 1.7;
  color: #1F2937;
  margin-bottom: 32px;
  flex: 1;
}

.story-quote .highlight-purple {
  color: #66228A;
  font-weight: 700;
}

.story-customer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.customer-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #66228A, #A855F7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.customer-info {
  flex: 1;
}

.customer-name {
  font-size: 16px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 4px 0;
}

.customer-company {
  font-size: 14px;
  color: #4B5563;
  margin: 0 0 4px 0;
}

.customer-details {
  font-size: 13px;
  color: #9CA3AF;
  margin: 0;
}

.story-metrics {
  background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.story-metric {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(102, 34, 138, 0.15);
}

.story-metric:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metric-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-icon i {
  font-size: 28px;
  color: #66228A;
}

.metric-content {
  flex: 1;
}

.metric-value {
  font-size: 32px;
  font-weight: 700;
  color: #66228A;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}

.success-story-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.success-cta-text {
  font-size: 18px;
  color: #4B5563;
  margin-bottom: 20px;
  font-weight: 500;
}

.success-cta-button {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #66228A 0%, #A855F7 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(102, 34, 138, 0.3);
  text-transform: uppercase;
}

.success-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(102, 34, 138, 0.4);
  color: white;
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .success-story-card {
    grid-template-columns: 1fr;
  }
  
  .story-testimonial {
    padding: 36px;
  }
  
  .story-metrics {
    padding: 36px;
  }
}

@media (max-width: 768px) {
  .success-story-section {
    padding: 60px 0;
  }
  
  .success-story-header {
    margin-bottom: 40px;
  }
  
  .success-story-title {
    font-size: 28px;
  }
  
  .story-testimonial {
    padding: 28px;
  }
  
  .story-quote {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .story-metrics {
    padding: 28px;
    gap: 24px;
  }
  
  .story-metric {
    padding-bottom: 24px;
  }
  
  .metric-value {
    font-size: 28px;
  }
  
  .metric-icon i {
    font-size: 24px;
  }
  
  .success-cta-button {
    padding: 16px 32px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .success-story-section {
    padding: 40px 0;
  }
  
  .success-story-title {
    font-size: 24px;
  }
  
  .story-testimonial {
    padding: 24px;
  }
  
  .story-quote {
    font-size: 15px;
  }
  
  .story-metrics {
    padding: 24px;
    gap: 20px;
  }
  
  .story-metric {
    padding-bottom: 20px;
  }
  
  .customer-avatar {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }
  
  .customer-name {
    font-size: 15px;
  }
  
  .customer-company {
    font-size: 13px;
  }
  
  .customer-details {
    font-size: 12px;
  }
  
  .metric-value {
    font-size: 24px;
  }
  
  .metric-label {
    font-size: 13px;
  }
  
  .success-cta-text {
    font-size: 16px;
  }
  
  .success-cta-button {
    padding: 14px 28px;
    font-size: 13px;
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================
   Modern FAQ Section Styles
   ============================================ */

.modern-faq-section {
  padding: 60px 0;
  background: white;
}

.modern-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.modern-faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 12px;
}

.modern-faq-subtitle {
  font-size: 16px;
  color: #6B7280;
  font-weight: 400;
}

.modern-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.modern-faq-item {
  border-bottom: 1px solid #E5E7EB;
}

.modern-faq-item:first-child {
  border-top: 1px solid #E5E7EB;
}

.modern-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modern-faq-question:hover {
  color: #66228A;
}

.modern-faq-question h3 {
  font-size: 17px;
  font-weight: 400;
  color: #1F2937;
  margin: 0;
  padding-right: 20px;
  flex: 1;
  transition: color 0.3s ease;
}

.modern-faq-item.active .modern-faq-question h3 {
  font-weight: 500;
}

.modern-faq-question:hover h3 {
  color: #66228A;
}

.modern-faq-icon {
  font-size: 18px;
  color: #9CA3AF;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.modern-faq-item.active .modern-faq-icon {
  transform: rotate(180deg);
  color: #66228A;
}

.modern-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.modern-faq-item.active .modern-faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.modern-faq-answer p {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.7;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modern-faq-section {
    padding: 40px 0;
  }

  .modern-faq-header {
    margin-bottom: 30px;
  }

  .modern-faq-title {
    font-size: 26px;
  }

  .modern-faq-subtitle {
    font-size: 14px;
  }

  .modern-faq-question {
    padding: 20px 0;
  }

  .modern-faq-question h3 {
    font-size: 16px;
  }

  .modern-faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .modern-faq-section {
    padding: 30px 0;
  }

  .modern-faq-title {
    font-size: 22px;
  }

  .modern-faq-subtitle {
    font-size: 13px;
  }

  .modern-faq-question {
    padding: 18px 0;
  }

  .modern-faq-question h3 {
    font-size: 15px;
    padding-right: 16px;
  }

  .modern-faq-icon {
    font-size: 16px;
  }

  .modern-faq-answer p {
    font-size: 13px;
  }

  .modern-faq-item.active .modern-faq-answer {
    padding-bottom: 20px;
  }
}