/* Podcast Whales - Exact Replica CSS */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background-color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.black {
  background-color: #000;
  color: #fff;
}

/* Navigation Styles */
.navigation-2.w-nav {
  position: relative;
  background: transparent;
  z-index: 1000;
  padding: 20px 0;
}

.nav_container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand.w-nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo.mobie {
  height: 50px;
  width: auto;
}

.nav-menu-2.w-nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link-2.w-nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.nav-link-2.w-nav-link:hover {
  opacity: 0.7;
}

.button.w-button {
  background-color: #f4d03f;
  color: #000;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 4px rgba(244, 208, 63, 0.3);
}

.button.w-button:hover {
  background-color: #f1c40f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(244, 208, 63, 0.4);
}

.button.dark.w-button {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}

.button.dark.w-button:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.menu-button-2.w-nav-button {
  display: none;
}

/* Hero Section */
.section-2.hero {
  padding: 80px 0;
  background-color: #000;
}

.container-2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.hero_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

.div-block-25 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 20px;
}

.h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.paragraph-2 {
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0;
  font-weight: 400;
}

/* Spectacular Hero Section */
.section-2.hero-spectacular {
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 70%);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: flex-start;
  padding: 40px 0 40px 0;
  padding-top: 60px;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23f4d03f" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="0.5" fill="%23f4d03f" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="0.8" fill="%23f4d03f" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="4s" repeatCount="indefinite"/></circle></svg>') repeat;
  animation: float 20s linear infinite;
  z-index: 1;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(244, 208, 63, 0.05) 0%, transparent 25%, transparent 75%, rgba(244, 208, 63, 0.05) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  margin-top: -40px;
}

.hero-left-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(244, 208, 63, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 208, 63, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  width: fit-content;
  animation: glow-pulse 3s ease-in-out infinite;
}

.badge-icon {
  font-size: 20px;
  animation: bounce 2s ease-in-out infinite;
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #f4d03f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title-spectacular {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.title-line-1 {
  background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slide-in-left 1s ease-out;
}

.title-line-2 {
  color: #fff;
  animation: slide-in-left 1s ease-out 0.2s both;
}

.title-line-3 {
  background: linear-gradient(135deg, #f39c12 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slide-in-left 1s ease-out 0.4s both;
}

.hero-subtitle-spectacular {
  font-size: 20px;
  line-height: 1.6;
  color: #d0d0d0;
  font-weight: 400;
  margin: 0;
  animation: fade-in-up 1s ease-out 0.6s both;
}

.hero-stats-mini {
  display: flex;
  gap: 32px;
  animation: fade-in-up 1s ease-out 0.8s both;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #f4d03f;
}

.mini-stat-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
  animation: fade-in-up 1s ease-out 1s both;
}

/* Hero Form Container */
.hero-form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(244, 208, 63, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  transition: all 0.3s ease;
  animation: fade-in-up 1s ease-out 0.4s both;
}

.hero-form-container:hover {
  border-color: rgba(244, 208, 63, 0.4);
  box-shadow: 0 10px 40px rgba(244, 208, 63, 0.1);
}

.hero-form-container .form-title {
  font-size: 28px;
}

.hero-form-container .form-subtitle {
  font-size: 16px;
}

/* High-Converting Lead Gen Form */
.lead-form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(244, 208, 63, 0.2);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 500px;
  transition: all 0.3s ease;
}

.lead-form-container:hover {
  border-color: rgba(244, 208, 63, 0.4);
  box-shadow: 0 10px 40px rgba(244, 208, 63, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.form-subtitle {
  font-size: 14px;
  color: #f4d03f;
  margin: 0;
  font-weight: 500;
}

.lead-gen-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-input, .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease;
  font-family: 'Raleway', sans-serif;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: rgba(244, 208, 63, 0.5);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.1);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #111;
  color: #fff;
}

.form-submit-btn {
  background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
  color: #000;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  font-family: 'Raleway', sans-serif;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
}

.submit-arrow {
  transition: transform 0.3s ease;
}

.form-submit-btn:hover .submit-arrow {
  transform: translateX(4px);
}

.form-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 8px 0 0 0;
  line-height: 1.4;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.success-title {
  font-size: 20px;
  font-weight: 700;
  color: #f4d03f;
  margin: 0 0 8px 0;
}

.success-message {
  font-size: 14px;
  color: #d0d0d0;
  margin: 0;
}

.hero-cta-primary {
  background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
  color: #000;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(244, 208, 63, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

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

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(244, 208, 63, 0.4);
}

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

.hero-cta-primary:hover .cta-arrow {
  transform: translateX(4px);
}

.hero-cta-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 208, 63, 0.5);
}

.cta-icon {
  font-size: 14px;
  color: #f4d03f;
}

.hero-right-content {
  position: relative;
  animation: fade-in-up 1s ease-out 0.4s both;
  margin-top: 120px;
}

.video-container-spectacular {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 100%;
}


.video-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, #f4d03f, #f39c12, #f4d03f);
  border-radius: 30px;
  filter: blur(20px);
  opacity: 0.3;
  animation: rotate-glow 8s linear infinite;
}

.video-frame {
  position: relative;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
}

.video-autoplay-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.video-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
}

.sound-toggle-btn {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 208, 63, 0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.sound-toggle-btn:hover {
  background: rgba(244, 208, 63, 0.2);
  border-color: rgba(244, 208, 63, 0.6);
  transform: scale(1.1);
}

.sound-icon {
  transition: all 0.3s ease;
}

/* Removed play overlay - using autoplay video */

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: 24px;
  animation: float-around 6s ease-in-out infinite;
}

.floating-element.element-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.floating-element.element-2 {
  top: 30%;
  left: -10%;
  animation-delay: 1.5s;
}

.floating-element.element-3 {
  bottom: 20%;
  right: -5%;
  animation-delay: 3s;
}

.floating-element.element-4 {
  bottom: 10%;
  left: 15%;
  animation-delay: 4.5s;
}

/* Hero Animations */
@keyframes float {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100px); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(244, 208, 63, 0.3); }
  50% { box-shadow: 0 0 40px rgba(244, 208, 63, 0.5); }
}

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

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes ripple {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes float-around {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-10px) translateX(5px); }
  50% { transform: translateY(-5px) translateX(-5px); }
  75% { transform: translateY(-15px) translateX(3px); }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-title-spectacular {
    font-size: 48px;
  }
  
  .hero-stats-mini {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-cta-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-form-container {
    max-width: 100%;
    padding: 30px;
  }
  
  .hero-form-container .form-title {
    font-size: 24px;
  }
  
  .hero-form-container .form-subtitle {
    font-size: 14px;
  }
  
  .lead-form-container {
    max-width: 100%;
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .form-title {
    font-size: 20px;
  }
}

/* Spectacular Services Section */
.section-2.services-spectacular {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #111 50%, #1a1a1a 75%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.services-background-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.3) 0%, transparent 70%);
  animation: float-particle 15s ease-in-out infinite;
}

.service-particle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 80%;
  animation-delay: 0s;
}

.service-particle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 10%;
  animation-delay: 5s;
}

.service-particle-3 {
  width: 100px;
  height: 100px;
  top: 80%;
  left: 70%;
  animation-delay: 10s;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(244, 208, 63, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 208, 63, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 24px;
  animation: glow-pulse 3s ease-in-out infinite;
}

.services-badge .badge-icon {
  font-size: 20px;
  animation: bounce 2s ease-in-out infinite;
}

.services-badge .badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #f4d03f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-title-spectacular {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px 0;
  background: linear-gradient(135deg, #f4d03f 0%, #f39c12 50%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fade-in-up 1s ease-out 0.2s both;
}

.services-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #d0d0d0;
  max-width: 600px;
  margin: 0 auto;
  animation: fade-in-up 1s ease-out 0.4s both;
}

.services-grid-spectacular {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}

.service-card-spectacular {
  position: relative;
  height: 100%;
  animation: fade-in-up 1s ease-out both;
}

.service-card-spectacular.strategy-card {
  animation-delay: 0.6s;
}

.service-card-spectacular.production-card {
  animation-delay: 0.8s;
}

.service-card-spectacular.promotion-card {
  animation-delay: 1s;
}

.service-card-inner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.service-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-inner:hover::before {
  opacity: 1;
}

.service-card-inner:hover {
  transform: translateY(-10px);
  border-color: rgba(244, 208, 63, 0.3);
  box-shadow: 0 20px 60px rgba(244, 208, 63, 0.2);
}

.service-icon-container {
  position: relative;
  margin-bottom: 32px;
  width: 80px;
  height: 80px;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(244, 208, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.strategy-glow {
  background: linear-gradient(45deg, #ff6b6b, #ee5a52);
  filter: blur(15px);
}

.production-glow {
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  filter: blur(15px);
}

.promotion-glow {
  background: linear-gradient(45deg, #f4d03f, #f39c12);
  filter: blur(15px);
}

.service-card-inner:hover .service-glow {
  opacity: 0.6;
}

.service-card-inner:hover .service-icon {
  transform: scale(1.1);
  background: rgba(244, 208, 63, 0.2);
}

.service-content {
  position: relative;
  z-index: 2;
}

.service-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
}

.service-description {
  font-size: 16px;
  line-height: 1.6;
  color: #d0d0d0;
  margin: 0 0 24px 0;
}

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

.feature-item {
  font-size: 14px;
  color: #f4d03f;
  font-weight: 500;
}

/* Removed hover overlay effects for cleaner interaction */

.services-cta-section {
  text-align: center;
  position: relative;
  z-index: 3;
}

.services-cta-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(244, 208, 63, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
  animation: fade-in-up 1s ease-out 1.2s both;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
}

.cta-subtitle {
  font-size: 18px;
  color: #d0d0d0;
  margin: 0 0 32px 0;
}

.services-cta-button {
  background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
  color: #000;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(244, 208, 63, 0.3);
  position: relative;
  overflow: hidden;
}

.services-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

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

.services-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(244, 208, 63, 0.4);
}

.services-cta-button .cta-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.services-cta-button:hover .cta-arrow {
  transform: translateX(6px);
}

/* Services Animations */
@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(0) rotate(180deg);
  }
  75% {
    transform: translateY(20px) rotate(270deg);
  }
}

@keyframes bounce-hover {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Services */
@media (max-width: 768px) {
  .services-grid-spectacular {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .services-title-spectacular {
    font-size: 40px;
  }
  
  .service-card-inner {
    padding: 30px;
  }
  
  .services-cta-content {
    padding: 40px 30px;
  }
}

/* Spectacular Stats Section */
.section-2.stats-spectacular {
  background: linear-gradient(135deg, #f4d03f 0%, #f39c12 25%, #f4d03f 50%, #f39c12 75%, #f4d03f 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

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

.stats-glow-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.stats-glow-1, .stats-glow-2, .stats-glow-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float-glow 20s ease-in-out infinite;
}

.stats-glow-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.stats-glow-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
  top: 60%;
  right: 20%;
  animation-delay: 7s;
}

.stats-glow-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
  bottom: 10%;
  left: 60%;
  animation-delay: 14s;
}

.stats-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}

.stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 24px;
  animation: glow-pulse-dark 3s ease-in-out infinite;
}

.stats-badge .badge-icon {
  font-size: 20px;
  animation: bounce 2s ease-in-out infinite;
}

.stats-badge .badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-title-spectacular {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px 0;
  color: #000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: fade-in-up 1s ease-out 0.2s both;
}

.stats-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  animation: fade-in-up 1s ease-out 0.4s both;
}

.stats-grid-spectacular {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}

.stat-card-spectacular {
  animation: fade-in-up 1s ease-out both;
}

.stat-card-spectacular.views-card {
  animation-delay: 0.6s;
}

.stat-card-spectacular.downloads-card {
  animation-delay: 0.8s;
}

.stat-card-spectacular.episodes-card {
  animation-delay: 1s;
}

.stat-card-spectacular.revenue-card {
  animation-delay: 1.2s;
}

.stat-card-inner {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card-inner:hover::before {
  opacity: 1;
}

.stat-card-inner:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.stat-icon-wrapper {
  position: relative;
  margin: 0 auto 24px auto;
  width: 80px;
  height: 80px;
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.stat-pulse-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  animation: pulse-ring 2s ease-out infinite;
}

.stat-card-inner:hover .stat-icon {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.2);
}

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

.stat-prefix, .stat-number, .stat-suffix {
  font-weight: 800;
  color: #000;
  line-height: 1;
}

.stat-prefix {
  font-size: 36px;
}

.stat-number {
  font-size: 48px;
  transition: all 0.3s ease;
}

.stat-suffix {
  font-size: 36px;
}

.stat-card-inner:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.4;
}

.stat-trend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  margin-top: auto;
}

.trend-arrow {
  font-size: 16px;
  color: #27ae60;
  font-weight: bold;
}

.trend-text {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-bottom-section {
  position: relative;
  z-index: 3;
  text-align: center;
}

.stats-testimonial {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  animation: fade-in-up 1s ease-out 1.4s both;
}

.testimonial-quote {
  font-size: 24px;
  line-height: 1.6;
  color: #000;
  font-style: italic;
  margin-bottom: 32px;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #f4d03f;
}

.author-info {
  text-align: left;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.author-title {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

/* Stats Animations */
@keyframes float-glow {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-10px);
  }
  75% {
    transform: translateY(-30px) translateX(5px);
  }
}

@keyframes glow-pulse-dark {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 0 40px rgba(0, 0, 0, 0.4); }
}

@keyframes pulse-ring {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/* Counter Animation */
.stat-number[data-count] {
  counter-reset: num var(--num, 0);
  animation: counter 2s ease-out;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.stat-number[data-count]::before {
  content: counter(num);
}

@keyframes counter {
  from { --num: 0; }
  to { --num: attr(data-count number, 0); }
}

/* Responsive Stats */
@media (max-width: 768px) {
  .stats-grid-spectacular {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stats-title-spectacular {
    font-size: 40px;
  }
  
  .stat-card-inner {
    padding: 30px 20px;
  }
  
  .testimonial-quote {
    font-size: 20px;
  }
  
  .testimonial-author {
    flex-direction: column;
    gap: 16px;
  }
  
  .author-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid-spectacular {
    grid-template-columns: 1fr;
  }
}

/* Refined Podcasts Section */
.section-2.podcasts-refined {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  padding: 100px 0;
  position: relative;
}

.podcasts-header {
  text-align: center;
  margin-bottom: 60px;
}

.podcasts-title {
  background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.podcasts-subtitle {
  font-size: 18px;
  color: #d0d0d0;
  font-weight: 400;
  opacity: 0.9;
}

.podcasts-grid-refined {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.podcast-link-refined {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.podcast-link-refined:hover {
  transform: translateY(-5px);
}

.podcast-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.podcast-image-wrapper:hover {
  box-shadow: 0 12px 48px rgba(244, 208, 63, 0.2);
}

.podcast-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.podcast-image-wrapper:hover .podcast-overlay {
  opacity: 1;
}

.podcast-image-wrapper:hover .podcast-image {
  transform: scale(1.05);
}

.play-icon-small {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(244, 208, 63, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
  transition: all 0.3s ease;
}

.play-icon-small:hover {
  background: rgba(244, 208, 63, 1);
  transform: scale(1.1);
}

.testimonial-video-section {
  max-width: 500px;
  margin: 0 auto;
}

.video-container-refined {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 3px solid #f4d03f;
  background: #111;
  padding: 8px;
}

.video-container-refined::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: linear-gradient(45deg, #f4d03f, #f39c12, #f4d03f);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.4;
  filter: blur(8px);
}

.video-container-refined .code-embed-2 {
  border-radius: 12px;
  overflow: hidden;
}

/* Responsive Podcasts */
@media (max-width: 768px) {
  .podcasts-grid-refined {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .podcasts-grid-refined {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Legacy Services Section */
.section-2 {
  padding: 100px 0;
  background-color: #000;
}

.section-2.white {
  background-color: #fff;
  color: #000;
}

.title_wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.h2-3.center {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.section-2.white .h2-3 {
  color: #000;
}

.div-block-23 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.div-block-24 {
  text-align: center;
}

.h3-2 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.section-2.white .h3-2 {
  color: #000;
}

.small_paragraph {
  font-size: 16px;
  line-height: 1.6;
  color: #d0d0d0;
  font-weight: 400;
}

.section-2.white .small_paragraph {
  color: #555;
}

/* Stats Section */
.div-block-26 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.div-block-27 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.h3-2.large {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.text-block-3 {
  font-size: 16px;
  color: #666;
  text-align: center;
}

/* Podcasts Grid */
.div-block-22 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.w-inline-block {
  display: inline-block;
  max-width: 100%;
}

.image-12 {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.image-12:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Video Container */
.div-block-28 {
  margin-top: 40px;
}

.container-3.w-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Spectacular Social Proof Section */
.social-proof-section {
  background: linear-gradient(135deg, #000 0%, #0a0a0a 25%, #111 50%, #0a0a0a 75%, #000 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.social-proof-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 30%, rgba(244, 208, 63, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(244, 208, 63, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Social Proof Header */
.social-proof-header {
  text-align: center;
  margin-bottom: 80px;
}

.social-proof-title {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #f4d03f 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.social-proof-subtitle {
  font-size: 22px;
  color: #f4d03f;
  font-weight: 500;
  margin: 0;
}

/* Success Metrics Banner */
.success-metrics {
  margin-bottom: 100px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.metric-item {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  border: 2px solid rgba(244, 208, 63, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.metric-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4d03f, #f1c40f);
}

.metric-item:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #f4d03f;
  box-shadow: 0 20px 60px rgba(244, 208, 63, 0.3);
}

.metric-icon {
  font-size: 32px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
}

.metric-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-number {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  border: 2px solid rgba(244, 208, 63, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #f4d03f, #f1c40f);
}

.testimonial-card:hover {
  transform: translateY(-12px);
  border-color: #f4d03f;
  box-shadow: 0 24px 80px rgba(244, 208, 63, 0.3);
}

/* Testimonial Header */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #f4d03f;
  box-shadow: 0 4px 16px rgba(244, 208, 63, 0.3);
}

.client-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.client-title {
  font-size: 14px;
  color: #f4d03f;
  font-weight: 600;
  margin: 0;
}

.client-company {
  font-size: 12px;
  color: #ccc;
}

.testimonial-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 208, 63, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(244, 208, 63, 0.3);
}

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

.badge-text {
  font-size: 12px;
  color: #f4d03f;
  font-weight: 600;
}

/* Testimonial Content */
.testimonial-content {
  margin-bottom: 30px;
  position: relative;
}

.quote-icon {
  font-size: 60px;
  color: #f4d03f;
  font-family: serif;
  line-height: 1;
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
  font-style: italic;
  margin: 0;
  padding-left: 40px;
}

.testimonial-quote strong {
  color: #f4d03f;
  font-weight: 700;
}

/* Testimonial Results */
.testimonial-results {
  background: rgba(244, 208, 63, 0.1);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(244, 208, 63, 0.3);
}

.result-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-desc {
  font-size: 12px;
  color: #f4d03f;
  font-weight: 600;
  text-align: center;
}

/* Trust Indicators */
.trust-indicators {
  margin-bottom: 100px;
}

.trust-header {
  text-align: center;
  margin-bottom: 60px;
}

.trust-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #fff, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: rgba(17, 17, 17, 0.8);
  border-radius: 20px;
  border: 2px solid rgba(244, 208, 63, 0.2);
  transition: all 0.3s ease;
}

.trust-item:hover {
  border-color: #f4d03f;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(244, 208, 63, 0.2);
}

.trust-icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-content {
  flex: 1;
}

.trust-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.trust-description {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
}

/* Success Stories */
.success-stories {
  text-align: center;
}

.stories-header {
  margin-bottom: 60px;
}

.stories-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stories-subtitle {
  font-size: 18px;
  color: #e0e0e0;
  margin: 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.story-card {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px 20px;
  border: 2px solid rgba(244, 208, 63, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4d03f, #f1c40f);
}

.story-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #f4d03f;
  box-shadow: 0 20px 60px rgba(244, 208, 63, 0.3);
}

.story-metric {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(244, 208, 63, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(244, 208, 63, 0.3);
}

.story-number {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.story-label {
  font-size: 12px;
  color: #f4d03f;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

.story-text {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}

.story-client {
  font-size: 14px;
  color: #f4d03f;
  font-weight: 600;
}

/* Legacy Testimonials (for compatibility) */
.quote_box {
  background-color: #111;
  padding: 50px;
  margin: 60px auto;
  max-width: 900px;
  border-radius: 12px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid #222;
}

.image-14, .image-13 {
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 3px solid #333;
}

.quote_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bold-text {
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.quote_text:first-child .bold-text {
  font-size: 20px;
  color: #f4d03f;
  font-style: italic;
}

/* Mature Benefits Section */
.benefits-section {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #111 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  transition: all 0.6s ease;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 50% 20%, rgba(244, 208, 63, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(244, 208, 63, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* Benefits Header */
.benefits-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.benefits-main-title {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
  opacity: 0.95;
}

.benefits-subtitle {
  font-size: 20px;
  color: #d0d0d0;
  font-weight: 400;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Statistics Showcase */
.stats-showcase {
  margin-bottom: 100px;
}

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

.stats-intro {
  font-size: 18px;
  color: #f4d03f;
  margin: 0;
  font-weight: 500;
  opacity: 0.9;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(244, 208, 63, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f4d03f, #f1c40f);
  opacity: 0.6;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 208, 63, 0.3);
  box-shadow: 0 10px 40px rgba(244, 208, 63, 0.15);
}

/* Stat Visual Elements */
.stat-visual {
  margin-bottom: 30px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stat-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(#f4d03f 0deg, #f4d03f 223.2deg, #333 223.2deg, #333 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stat-circle::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background: #111;
  border-radius: 50%;
}

.stat-number {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 900;
  color: #f4d03f;
}

.stat-bar-container {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.stat-bar {
  width: 80%;
  height: 20px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.stat-bar-fill {
  height: 100%;
  width: 26%;
  background: linear-gradient(90deg, #f4d03f, #f1c40f);
  border-radius: 10px;
  animation: fillBar 2s ease-out;
}

@keyframes fillBar {
  from { width: 0%; }
  to { width: 26%; }
}

.growth-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 60px;
}

.chart-bar {
  width: 12px;
  background: linear-gradient(to top, #f4d03f, #f1c40f);
  border-radius: 2px;
  animation: growBar 1.5s ease-out;
}

@keyframes growBar {
  from { height: 0%; }
}

.stat-info {
  text-align: center;
}

.stat-label {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.stat-detail {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

/* Stats Conclusion */
.stats-conclusion {
  background: rgba(244, 208, 63, 0.1);
  border: 2px solid rgba(244, 208, 63, 0.3);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.conclusion-text {
  font-size: 18px;
  color: #e0e0e0;
  margin: 0;
  line-height: 1.6;
}

.conclusion-text strong {
  color: #f4d03f;
}

/* Benefits Cards */
.benefits-cards {
  margin-bottom: 100px;
}

.benefits-cards-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-cards-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #fff, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  border: 2px solid rgba(244, 208, 63, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #f4d03f, #f1c40f);
}

.benefit-card:hover {
  transform: translateY(-12px);
  border-color: #f4d03f;
  box-shadow: 0 24px 80px rgba(244, 208, 63, 0.3);
}

.benefit-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.benefit-icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
}

.benefit-icon {
  font-size: 36px;
}

.benefit-badge {
  background: rgba(244, 208, 63, 0.2);
  color: #f4d03f;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(244, 208, 63, 0.3);
}

.benefit-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.benefit-description {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Feature Items */
.benefit-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(244, 208, 63, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(244, 208, 63, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(244, 208, 63, 0.15);
  border-color: rgba(244, 208, 63, 0.4);
  transform: translateX(8px);
}

.feature-icon {
  font-size: 18px;
}

.feature-text {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

/* Content Multiplier Visualization */
.content-multiplier {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.multiplier-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(244, 208, 63, 0.15);
  padding: 20px;
  border-radius: 16px;
  border: 2px solid rgba(244, 208, 63, 0.3);
}

.multiplier-icon {
  font-size: 32px;
}

.multiplier-text {
  font-size: 14px;
  font-weight: 600;
  color: #f4d03f;
}

.multiplier-arrows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 60px;
}

.arrow-line {
  height: 2px;
  background: linear-gradient(90deg, #f4d03f, transparent);
  position: relative;
}

.arrow-line::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: -8px;
  color: #f4d03f;
  font-size: 12px;
}

.multiplier-outputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.output-item {
  font-size: 12px;
  color: #e0e0e0;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  border: 1px solid #333;
  white-space: nowrap;
}

/* Benefit Results */
.benefit-result {
  text-align: center;
}

.result-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(244, 208, 63, 0.1);
  padding: 20px;
  border-radius: 16px;
  border: 2px solid rgba(244, 208, 63, 0.3);
}

.result-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-label {
  font-size: 14px;
  color: #f4d03f;
  font-weight: 600;
}

/* Why Choose Us */
.why-choose-us {
  text-align: center;
}

.why-header {
  margin-bottom: 50px;
}

.why-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-subtitle {
  font-size: 18px;
  color: #e0e0e0;
  margin: 0;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(17, 17, 17, 0.8);
  border-radius: 16px;
  border: 2px solid rgba(244, 208, 63, 0.2);
  transition: all 0.3s ease;
}

.why-feature:hover {
  border-color: #f4d03f;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(244, 208, 63, 0.2);
}

.why-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-text {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  flex: 1;
}

/* Legacy Benefits Section (for compatibility) */
.benefit_grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.benefit_left {
  display: flex;
  justify-content: center;
}

.benefit_icon {
  width: 60px;
  height: 60px;
}

.benefit_right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Amazing Process Section */
.process-section {
  background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(244, 208, 63, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(244, 208, 63, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.process-subtitle {
  font-size: 20px;
  color: #f4d03f;
  margin-top: 16px;
  font-weight: 400;
  text-align: center;
}

/* Timeline Container */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #f4d03f, #f1c40f, #f4d03f);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(244, 208, 63, 0.4);
}

/* Process Steps */
.process-step {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
  text-align: right;
}

.process-step:nth-child(even) .step-header {
  align-items: flex-end;
}

.process-step:nth-child(even) .detail-item {
  flex-direction: row-reverse;
  text-align: right;
}

/* Step Numbers */
.step-number {
  position: relative;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(244, 208, 63, 0.4);
  border: 4px solid #000;
  z-index: 2;
}

.step-digit {
  font-size: 36px;
  font-weight: 900;
  color: #000;
  text-shadow: none;
}

.step-progress {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(45deg, #f4d03f, transparent, #f4d03f) border-box;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Step Content */
.step-content {
  flex: 1;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #333;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4d03f, #f1c40f);
  border-radius: 2px 2px 0 0;
}

.step-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  border-color: #f4d03f;
}

/* Step Header */
.step-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.step-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  background: linear-gradient(135deg, #fff, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-duration {
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* Step Description */
.step-description {
  margin-bottom: 30px;
}

.step-description p {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

/* Step Details */
.step-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(244, 208, 63, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(244, 208, 63, 0.2);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(244, 208, 63, 0.15);
  border-color: rgba(244, 208, 63, 0.4);
  transform: translateX(8px);
}

.process-step:nth-child(even) .detail-item:hover {
  transform: translateX(-8px);
}

.detail-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  border-radius: 10px;
  flex-shrink: 0;
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.detail-text strong {
  color: #f4d03f;
  font-size: 16px;
  font-weight: 600;
}

.detail-text span {
  color: #ccc;
  font-size: 14px;
  line-height: 1.4;
}

/* Results Section */
.process-results {
  margin-top: 80px;
  text-align: center;
  background: linear-gradient(135deg, rgba(244, 208, 63, 0.1), rgba(244, 208, 63, 0.05));
  padding: 60px 40px;
  border-radius: 24px;
  border: 2px solid rgba(244, 208, 63, 0.2);
}

.results-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #fff, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.result-item {
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.result-item:hover {
  transform: translateY(-8px);
  border-color: #f4d03f;
  box-shadow: 0 16px 48px rgba(244, 208, 63, 0.2);
}

.result-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.result-label {
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* Spectacular CTA Section */
.cta-section {
  background: linear-gradient(135deg, #000 0%, #111 25%, #222 50%, #111 75%, #000 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(244, 208, 63, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(244, 208, 63, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 0%, rgba(244, 208, 63, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

/* CTA Header */
.cta-header {
  text-align: center;
  margin-bottom: 80px;
}

.cta-main-title {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #f4d03f 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 24px;
  color: #f4d03f;
  font-weight: 500;
  margin: 0;
}

/* Value Props Grid */
.value-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.value-prop-card {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid rgba(244, 208, 63, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-prop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4d03f, #f1c40f);
}

.value-prop-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #f4d03f;
  box-shadow: 0 20px 60px rgba(244, 208, 63, 0.3);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
}

.value-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.value-description {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* What We Do Section */
.what-we-do {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.what-we-do-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.what-we-do-description {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Services Checklist */
.services-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(244, 208, 63, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(244, 208, 63, 0.2);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  background: rgba(244, 208, 63, 0.15);
  border-color: rgba(244, 208, 63, 0.4);
  transform: translateX(8px);
}

.check-icon {
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  color: #000;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

.checklist-item span {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

/* Work Promise Visual */
.what-we-do-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-promise {
  text-align: center;
  position: relative;
}

.promise-badge {
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  color: #000;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(244, 208, 63, 0.4);
  animation: pulse 2s infinite;
}

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

.promise-arrow {
  font-size: 24px;
  font-weight: 900;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  background: rgba(0, 0, 0, 0.6);
  padding: 16px 24px;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  border: 2px solid rgba(244, 208, 63, 0.3);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: #f4d03f;
  background: rgba(244, 208, 63, 0.1);
  transform: scale(1.05);
}

/* Final CTA Box */
.final-cta {
  text-align: center;
}

.cta-box {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid rgba(244, 208, 63, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #f4d03f, #f1c40f, #f4d03f);
}

.cta-box-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-box-description {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-primary.w-button {
  background: linear-gradient(135deg, #f4d03f, #f1c40f);
  color: #000;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(244, 208, 63, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary.w-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 48px rgba(244, 208, 63, 0.6);
}

.button-arrow {
  font-size: 20px;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.cta-primary.w-button:hover .button-arrow {
  transform: translateX(4px);
}

.cta-secondary.w-button {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-secondary.w-button:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* CTA Guarantee */
.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #f4d03f;
  font-weight: 600;
  font-size: 16px;
}

.guarantee-icon {
  font-size: 20px;
}

/* Process and Final CTA */
.title_wrapper_flex_24 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Footer */
.footer {
  background-color: #111;
  padding: 40px 0 20px;
  text-align: center;
}

.footer-wrapper {
  margin-bottom: 20px;
}

.footer-brand.w-inline-block img {
  height: 40px;
  width: auto;
}

.footer-divider-2 {
  height: 1px;
  background-color: #333;
  margin: 20px 0;
}

.footer-copyright-center {
  color: #666;
  font-size: 14px;
}

/* Video Embeds */
.w-embed.w-script {
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.wistia_responsive_padding {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.code-embed-2.w-embed.w-iframe.w-script iframe {
  border-radius: 12px;
}

.code-embed-2.w-embed.w-iframe.w-script {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .hero_grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    min-height: auto;
  }
  
  .div-block-25 {
    padding-right: 0;
  }
  
  .div-block-23 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .div-block-26 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .div-block-22 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .h1 {
    font-size: 40px;
  }
  
  .h2-3.center {
    font-size: 32px;
  }
  
  .section-2 {
    padding: 80px 0;
  }

  /* Process Section - Tablet */
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .process-step:nth-child(even) .step-content {
    text-align: center;
  }
  
  .process-step:nth-child(even) .step-header {
    align-items: center;
  }
  
  .process-step:nth-child(even) .detail-item {
    flex-direction: row;
    text-align: left;
  }
  
  .step-number {
    width: 100px;
    height: 100px;
  }
  
  .step-digit {
    font-size: 32px;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* CTA Section - Tablet */
  .cta-main-title {
    font-size: 36px;
  }
  
  .value-props-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
  }
  
  .what-we-do {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  
  .cta-section {
    padding: 80px 0;
  }

  /* Benefits Section - Tablet */
  .benefits-main-title {
    font-size: 36px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .why-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefits-section {
    padding: 80px 0;
  }

  /* Social Proof Section - Tablet */
  .social-proof-title {
    font-size: 36px;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .social-proof-section {
    padding: 80px 0;
  }
}

@media screen and (max-width: 767px) {
  .nav-menu-2.w-nav-menu {
    display: none;
  }
  
  .menu-button-2.w-nav-button {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
  }
  
  .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-2 {
    padding: 60px 0;
  }
  
  .h1 {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .h2-3.center {
    font-size: 28px;
  }
  
  .div-block-26 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .div-block-22 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .quote_box {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 30px;
    margin: 40px auto;
  }
  
  .benefit_grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
  
  .title_wrapper {
    margin-bottom: 50px;
  }

  /* Process Section - Mobile */
  .step-content {
    padding: 30px 20px;
  }
  
  .step-title {
    font-size: 24px;
  }
  
  .step-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  
  .process-results {
    padding: 40px 20px;
  }
  
  .results-header h3 {
    font-size: 24px;
  }

  /* CTA Section - Mobile */
  .cta-main-title {
    font-size: 28px;
  }
  
  .cta-subtitle {
    font-size: 18px;
  }
  
  .value-prop-card {
    padding: 30px 20px;
  }
  
  .what-we-do-title {
    font-size: 28px;
  }
  
  .promise-badge {
    padding: 16px 24px;
    font-size: 16px;
  }
  
  .cta-box {
    padding: 40px 20px;
  }
  
  .cta-box-title {
    font-size: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Benefits Section - Mobile */
  .benefits-main-title {
    font-size: 28px;
  }
  
  .stats-title {
    font-size: 28px;
  }
  
  .benefit-card {
    padding: 30px 20px;
  }
  
  .content-multiplier {
    flex-direction: column;
    gap: 20px;
  }
  
  .multiplier-arrows {
    display: none;
  }
  
  .why-title {
    font-size: 24px;
  }

  /* Social Proof Section - Mobile */
  .social-proof-title {
    font-size: 28px;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-header {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  
  .client-info {
    flex-direction: column;
    text-align: center;
  }
  
  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .result-stats {
    flex-direction: column;
    gap: 16px;
  }
}

@media screen and (max-width: 479px) {
  .container-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .h2-3.center {
    font-size: 24px;
  }
  
  .paragraph-2 {
    font-size: 16px;
  }
  
  .quote_box {
    padding: 25px;
    margin: 30px auto;
  }
  
  .section-2 {
    padding: 50px 0;
  }
  
  .div-block-22 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .button.w-button {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .nav_container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Process Section - Small Mobile */
  .step-number {
    width: 80px;
    height: 80px;
  }
  
  .step-digit {
    font-size: 24px;
  }
  
  .step-content {
    padding: 25px 15px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .process-results {
    padding: 30px 15px;
  }
  
  .result-number {
    font-size: 36px;
  }

  /* CTA Section - Small Mobile */
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-main-title {
    font-size: 24px;
  }
  
  .cta-subtitle {
    font-size: 16px;
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
  
  .value-title {
    font-size: 20px;
  }
  
  .what-we-do-title {
    font-size: 24px;
  }
  
  .cta-box {
    padding: 30px 15px;
  }
  
  .cta-box-title {
    font-size: 20px;
  }
  
  .cta-primary.w-button {
    padding: 16px 24px;
    font-size: 16px;
  }

  /* Benefits Section - Small Mobile */
  .benefits-section {
    padding: 60px 0;
  }
  
  .benefits-main-title {
    font-size: 24px;
  }
  
  .stats-title {
    font-size: 24px;
  }
  
  .stat-card {
    padding: 30px 20px;
  }
  
  .benefit-card {
    padding: 25px 15px;
  }
  
  .benefit-title {
    font-size: 20px;
  }
  
  .why-title {
    font-size: 20px;
  }

  /* Social Proof Section - Small Mobile */
  .social-proof-section {
    padding: 60px 0;
  }
  
  .social-proof-title {
    font-size: 24px;
  }
  
  .metric-item {
    padding: 20px 15px;
  }
  
  .testimonial-card {
    padding: 25px 15px;
  }
  
  .testimonial-quote {
    font-size: 16px;
    padding-left: 20px;
  }
  
  .quote-icon {
    font-size: 40px;
    top: -15px;
    left: -5px;
  }
  
  .trust-item {
    padding: 20px 15px;
  }
  
  .story-card {
    padding: 20px 15px;
  }
}