/* ====== EMAIL MARKETING PAGE STYLES ====== */

h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1.2s ease;
}

/* Hero Backgrounds */
.hero-bg {
  background: radial-gradient(
      circle at 10% 20%,
      rgba(59, 130, 246, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(34, 197, 94, 0.08) 0%,
      transparent 50%
    );
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

.services-bg {
  background: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 40%
    ),
    linear-gradient(90deg, rgba(15, 23, 42, 0.7) 0%, transparent 50%);
  background-size: 180% 180%;
  animation: gradientFlow 25s ease infinite;
}

.features-bg {
  background: radial-gradient(
      circle at 50% 20%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 40%
    ),
    linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, transparent 50%);
  background-size: 160% 160%;
  animation: gradientPulse 18s ease infinite;
}

.process-bg {
  background: radial-gradient(
      circle at 40% 60%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 60% 40%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 40%
    ),
    linear-gradient(45deg, rgba(30, 41, 59, 0.9) 0%, transparent 50%);
  background-size: 180% 180%;
  animation: gradientFlow 20s ease infinite;
}

.benefits-bg {
  background: radial-gradient(
      circle at 30% 30%,
      rgba(59, 130, 246, 0.07) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(139, 92, 246, 0.07) 0%,
      transparent 40%
    ),
    linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: gradientShift 22s ease infinite;
}

.pricing-bg {
  background: radial-gradient(
      circle at 25% 25%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 40%
    ),
    linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, transparent 50%);
  background-size: 160% 160%;
  animation: gradientPulse 18s ease infinite;
}

.cta-bg {
  background: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 40%
    ),
    linear-gradient(90deg, rgba(15, 23, 42, 0.7) 0%, transparent 50%);
  background-size: 180% 180%;
  animation: gradientFlow 25s ease infinite;
}

/* SECTION SPACING BASE */
.services,
.features-section,
.process,
.benefits,
.pricing {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* SECTION CONTAINERS */
.services-container,
.features-container,
.process-container,
.benefits-container,
.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* SECTION TITLE SPACING */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--light);
}

.section-title p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* ====================== WHITE THEME STYLES ====================== */
.white-theme {
  background: white !important;
  color: #333 !important;
}

.white-theme .section-bg.services-bg,
.white-theme .section-bg.features-bg,
.white-theme .section-bg.process-bg,
.white-theme .section-bg.benefits-bg,
.white-theme .section-bg.pricing-bg {
  display: none !important;
}

.white-theme .service-card,
.white-theme .feature-card,
.white-theme .benefit-card,
.white-theme .process-step,
.white-theme .pricing-card,
.white-theme .cta-container {
  background: #f8f9fa !important;
  border: 1px solid #e9ecef !important;
  color: #333 !important;
}

.white-theme .section-title h2,
.white-theme .section-title h3,
.white-theme .service-card h3,
.white-theme .feature-card h4,
.white-theme .benefit-card h3,
.white-theme .process-step h3,
.white-theme .pricing-card h3,
.white-theme .cta-container h2 {
  color: #333 !important;
}

.white-theme .section-title p,
.white-theme .service-card p,
.white-theme .feature-card p,
.white-theme .benefit-card p,
.white-theme .service-features li,
.white-theme .benefit-stats .stat-label,
.white-theme .process-step p,
.white-theme .pricing-features li,
.white-theme .cta-container p {
  color: #666 !important;
}

.white-theme .service-icon,
.white-theme .feature-card-icon,
.white-theme .benefit-icon,
.white-theme .step-number {
  background: rgba(59, 130, 246, 0.1) !important;
  color: var(--primary) !important;
}

.white-theme .service-features li i,
.white-theme .pricing-features li i,
.white-theme .feature-list li i {
  color: var(--primary) !important;
}

.white-theme .service-card:hover,
.white-theme .feature-card:hover,
.white-theme .benefit-card:hover,
.white-theme .process-step:hover,
.white-theme .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: #dee2e6 !important;
}

.white-theme .service-card::before,
.white-theme .service-card::after,
.white-theme .process-steps::before {
  display: none !important;
}

.white-theme .tab-button {
  background: rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #ddd !important;
  color: #666 !important;
}

.white-theme .tab-button.active {
  background: var(--primary) !important;
  color: white !important;
  border-color: var(--primary) !important;
}

.white-theme .tab-button:hover:not(.active) {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

.white-theme .features-tab-content {
  background: transparent !important;
}

.white-theme .feature-content h3 {
  color: #333 !important;
}

.white-theme .feature-list li {
  color: #666 !important;
  border-bottom-color: rgba(0, 0, 0, 0.05) !important;
}

.white-theme .pricing-card.popular {
  border-color: var(--primary) !important;
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15) !important;
}

.white-theme .pricing-card.popular::before {
  background: var(--primary) !important;
  color: white !important;
}

.white-theme .pricing-price {
  color: var(--primary) !important;
}

.white-theme .benefit-stats .stat {
  color: var(--primary) !important;
}

.white-theme .stat-source {
  color: #666 !important;
}

/* ====================== HERO SECTION ====================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-content {
  z-index: 2;
}

.tagline {
  font-size: 14px;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 5px 15px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 30px;
  animation: fadeIn 1s ease;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--primary);
  margin-left: 2px;
  animation: blink 1s infinite;
}

.description {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 500px;
  animation: fadeIn 1.5s ease;
}

.features {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  animation: fadeIn 2s ease;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 15px;
  padding: 8px 16px;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(59, 130, 246, 0.1);
}

.feature i {
  color: var(--primary);
  font-size: 18px;
}

.buttons {
  display: flex;
  gap: 20px;
  animation: fadeIn 2.5s ease;
}

.secondary-button {
  background: transparent;
  color: var(--gray);
  border: 1px solid #475569;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.secondary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.3s ease;
}

.secondary-button:hover::before {
  width: 100%;
}

.secondary-button:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

/* ====================== NEW INTERACTIVE EMAIL PIPELINE ====================== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.email-pipeline-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
}

.email-pipeline {
  position: absolute;
  width: 100%;
  height: 100%;
}

.pipeline-path {
  position: absolute;
  width: 80%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  top: 50%;
  left: 10%;
  border-radius: 4px;
  opacity: 0.3;
}

.pipeline-node {
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  border: 3px solid var(--primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

.pipeline-node:hover {
  transform: scale(1.2);
  background: var(--primary);
  color: white;
  cursor: pointer;
}

.node-1 { top: 20%; left: 10%; animation: floatNode 4s ease-in-out infinite; }
.node-2 { top: 50%; left: 30%; animation: floatNode 4s ease-in-out infinite 0.5s; }
.node-3 { top: 80%; left: 50%; animation: floatNode 4s ease-in-out infinite 1s; }
.node-4 { top: 50%; left: 70%; animation: floatNode 4s ease-in-out infinite 1.5s; }
.node-5 { top: 20%; left: 90%; animation: floatNode 4s ease-in-out infinite 2s; }

.email-flow {
  position: absolute;
  width: 40px;
  height: 30px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: flowEmail 8s linear infinite;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.email-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  background: white;
  transform: translateY(-50%) rotate(45deg);
}

.email-flow i {
  font-size: 14px;
}

.pipeline-stat {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: statPulse 3s ease-in-out infinite;
  z-index: 4;
}

.pipeline-stat i {
  font-size: 20px;
  margin-bottom: 3px;
}

.pipeline-stat span {
  font-size: 12px;
}

.stat-1 { 
  top: 5%; 
  left: 25%; 
  animation-delay: 0s;
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.3);
}
.stat-2 { 
  top: 70%; 
  left: 40%; 
  animation-delay: 0.5s;
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}
.stat-3 { 
  top: 10%; 
  left: 65%; 
  animation-delay: 1s;
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
}

/* Pipeline tooltips */
.pipeline-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -100%);
  background: var(--dark);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 12px;
  width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.pipeline-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--dark) transparent transparent transparent;
}

.pipeline-tooltip strong {
  display: block;
  color: var(--primary-light);
  margin-bottom: 3px;
  font-size: 13px;
}

.pipeline-tooltip p {
  margin: 0;
  color: var(--gray);
  font-size: 11px;
}

.pipeline-node:hover .pipeline-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -120%);
}

/* Animations for email pipeline */
@keyframes floatNode {
  0%, 100% { 
    transform: translateY(0) scale(1); 
  }
  50% { 
    transform: translateY(-15px) scale(1.1); 
  }
}

@keyframes flowEmail {
  0% { 
    top: 20%; 
    left: 10%; 
    transform: scale(0.8);
    opacity: 0;
  }
  10% { 
    opacity: 1; 
  }
  20% { 
    top: 50%; 
    left: 30%; 
    transform: scale(1); 
  }
  40% { 
    top: 80%; 
    left: 50%; 
  }
  60% { 
    top: 50%; 
    left: 70%; 
  }
  80% { 
    top: 20%; 
    left: 90%; 
    transform: scale(1);
    opacity: 1;
  }
  100% { 
    top: 20%; 
    left: 90%; 
    transform: scale(0.8);
    opacity: 0;
  }
}

@keyframes statPulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 0.9; 
  }
  50% { 
    transform: scale(1.1); 
    opacity: 1; 
  }
}

@keyframes blink {
  from,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Animated background elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 15s infinite linear;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
  background: var(--primary);
  border-radius: 50%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 80%;
  background: var(--accent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: -5s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 15%;
  background: var(--success);
  border-radius: 50%;
  animation-delay: -10s;
}

.shape:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 70%;
  background: var(--warning);
  border-radius: 50%;
  animation-delay: -7s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

/* Email Marketing Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
  text-align: center;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(59, 130, 246, 0.2);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: #333;
}

.service-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.service-card:hover h3::after {
  width: 80px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.service-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li i {
  color: var(--primary);
}

/* UPDATED FEATURES SECTION - PARALLEL COLUMNS */
.features-section {
  background: white;
}

.features-tabs {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.features-tab-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-button {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
  color: #666;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.tab-button:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

.features-tab-content {
  display: none;
}

.features-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.feature-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #666;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li i {
  color: var(--primary);
  font-size: 18px;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.feature-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.feature-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.1);
}

.feature-card-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}

.feature-card-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Web Design Process Section - IMPROVED SPACING */
.process {
  background: white;
}

.process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  margin-top: 60px;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 0 0 calc(33.333% - 32px);
  max-width: 300px;
  min-width: 250px;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px 20px;
  border: 1px solid #e9ecef;
  transition: all 0.4s ease;
  margin: 0;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.step-number {
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  background: var(--primary);
  color: white;
  transform: scale(1.15) rotate(5deg);
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.step-content p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 0;
}

/* BENEFITS SECTION */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.benefit-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(59, 130, 246, 0.2);
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.benefit-stats {
  margin-top: 20px;
}

.benefit-stats .stat {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.benefit-stats .stat-label {
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

/* PRICING SECTION */
.pricing {
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.pricing-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
  text-align: center;
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
}

.pricing-card.popular::before {
  content: "Industry Data";
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary);
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-name {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.pricing-period {
  color: #666;
  font-size: 14px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--primary);
}

.stat-source {
  color: #94a3b8;
  font-size: 14px;
  font-style: italic;
  margin-top: 20px;
}

/* ====================== CTA SECTION - EXACT COPY FROM SERVICES/INDUSTRIES PAGES ====================== */

/* CTA Section - White Theme */
.cta-section.white-theme {
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  background: white !important;
}

.cta-section.white-theme .cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-align: center;
}

.cta-section.white-theme h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #333 !important;
}

.cta-section.white-theme p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #666 !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section.white-theme .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* CTA Button - Exact copy from services page */
.cta-section.white-theme .cta-button {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light)
  ) !important;
  color: white !important;
  text-decoration: none;
  border: none !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.cta-section.white-theme .cta-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5) !important;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--primary)
  ) !important;
  color: white !important;
}

/* Add animation keyframes if not already in your CSS */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  h1 {
    font-size: 46px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  /* Process steps adjust for medium screens */
  .process-step {
    flex: 0 0 calc(50% - 30px);
    max-width: 300px;
  }
  
  /* Adjust container padding for medium screens */
  .services-container,
  .features-container,
  .process-container,
  .benefits-container,
  .pricing-container {
    padding: 0 30px;
  }
  
  .hero-container {
    padding: 0 30px;
  }
  
  .cta-section.white-theme h2 {
    font-size: 38px;
  }
  
  /* Email pipeline responsive */
  .email-pipeline-container {
    max-width: 450px;
    height: 350px;
  }
  
  .pipeline-node {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .pipeline-stat {
    width: 50px;
    height: 50px;
  }
  
  .pipeline-stat i {
    font-size: 16px;
  }
  
  .pipeline-stat span {
    font-size: 10px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .features {
    justify-content: center;
  }

  .buttons {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .features-tab-nav {
    flex-direction: column;
    align-items: center;
  }

  .tab-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .tab-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Process steps adjust for tablets */
  .process-step {
    flex: 0 0 calc(50% - 30px);
    max-width: 280px;
  }
  
  /* Hero visual adjustments */
  .hero-visual {
    height: 400px;
  }
  
  .email-pipeline-container {
    max-width: 400px;
    height: 300px;
  }
  
  .pipeline-node {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .node-1 { top: 15%; left: 5%; }
  .node-2 { top: 50%; left: 25%; }
  .node-3 { top: 85%; left: 45%; }
  .node-4 { top: 50%; left: 65%; }
  .node-5 { top: 15%; left: 85%; }
  
  .email-flow {
    width: 35px;
    height: 25px;
  }
  
  .pipeline-stat {
    width: 45px;
    height: 45px;
  }
  
  .stat-1 { top: 0%; left: 20%; }
  .stat-2 { top: 75%; left: 35%; }
  .stat-3 { top: 5%; left: 60%; }
  
  /* Features section mobile improvements */
  .tab-content-grid {
    gap: 40px;
  }
  
  .feature-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  .feature-list li {
    padding: 10px 0;
    font-size: 14px;
  }
  
  /* Adjust section spacing for tablets */
  .services,
  .features-section,
  .process,
  .benefits,
  .pricing {
    padding: 80px 0;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  /* Adjust container padding for tablets */
  .services-container,
  .features-container,
  .process-container,
  .benefits-container,
  .pricing-container {
    padding: 0 25px;
  }
  
  .hero-container {
    padding: 0 25px;
  }
  
  .cta-section.white-theme {
    padding: 80px 40px;
  }
  
  .cta-section.white-theme h2 {
    font-size: 34px;
  }
  
  .cta-section.white-theme p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 25px 80px !important;
  }

  h1 {
    font-size: 36px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  
  .buttons .cta-button,
  .buttons .secondary-button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Process steps adjust for mobile */
  .process-steps {
    gap: 30px;
  }
  
  .process-step {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 25px 20px;
  }
  
  .step-number {
    width: 70px;
    height: 70px;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .step-content p {
    font-size: 15px;
  }

  /* Hero visual mobile adjustments */
  .hero-visual {
    height: 350px;
  }
  
  .email-pipeline-container {
    max-width: 350px;
    height: 250px;
  }
  
  .pipeline-node {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  .pipeline-path {
    height: 6px;
    width: 85%;
    left: 7.5%;
  }
  
  .email-flow {
    width: 30px;
    height: 22px;
  }
  
  .pipeline-stat {
    width: 40px;
    height: 40px;
  }
  
  .pipeline-stat i {
    font-size: 14px;
  }
  
  .pipeline-stat span {
    font-size: 9px;
  }

  /* Pricing cards mobile improvements */
  .pricing-grid {
    gap: 30px;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .pricing-card.popular {
    transform: none;
    margin: 0;
  }
  
  .pricing-card.popular::before {
    top: 15px;
    right: -35px;
    font-size: 11px;
    padding: 4px 35px;
  }
  
  .pricing-price {
    font-size: 36px;
  }
  
  .pricing-features li {
    padding: 10px 0;
    font-size: 14px;
  }
  
  /* Features cards mobile improvements */
  .feature-card {
    padding: 20px;
  }
  
  .feature-card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .feature-card-content h4 {
    font-size: 16px;
  }
  
  .feature-card-content p {
    font-size: 13px;
  }
  
  /* Benefits cards mobile improvements */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .benefit-card {
    padding: 30px 20px;
  }
  
  .benefit-stats .stat {
    font-size: 32px;
  }
  
  /* Adjust section spacing for mobile */
  .services,
  .features-section,
  .process,
  .benefits,
  .pricing {
    padding: 70px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  /* Adjust container padding for mobile */
  .services-container,
  .features-container,
  .process-container,
  .benefits-container,
  .pricing-container {
    padding: 0 20px;
  }
  
  .hero-container {
    padding: 0 20px;
  }
  
  .cta-container {
    padding: 0 20px;
  }
  
  .cta-section.white-theme {
    padding: 80px 20px;
  }
  
  .cta-section.white-theme h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .cta-section.white-theme p {
    font-size: 17px;
    margin-bottom: 35px;
  }
  
  .cta-section.white-theme .cta-button {
    width: 100%;
    max-width: 300px;
    padding: 16px 30px !important;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 32px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 16px;
  }

  /* Process steps small mobile adjustments */
  .process-steps {
    gap: 25px;
  }
  
  .process-step {
    padding: 20px 15px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .step-content h3 {
    font-size: 18px;
  }
  
  .step-content p {
    font-size: 14px;
  }

  /* Hero visual small mobile adjustments */
  .hero-visual {
    height: 300px;
  }
  
  .email-pipeline-container {
    max-width: 300px;
    height: 200px;
  }
  
  .pipeline-node {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .pipeline-path {
    height: 4px;
    width: 90%;
    left: 5%;
  }
  
  .email-flow {
    width: 25px;
    height: 18px;
  }
  
  .email-flow i {
    font-size: 10px;
  }
  
  .pipeline-stat {
    width: 35px;
    height: 35px;
    font-size: 10px;
  }
  
  .pipeline-stat i {
    font-size: 12px;
  }
  
  .pipeline-stat span {
    font-size: 8px;
  }
  
  .stat-1 { top: -5%; left: 15%; }
  .stat-2 { top: 80%; left: 30%; }
  .stat-3 { top: 0%; left: 55%; }

  .service-card,
  .pricing-card {
    padding: 30px 20px;
  }
  
  /* Further adjust section spacing for small mobile */
  .services,
  .features-section,
  .process,
  .benefits,
  .pricing {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 35px;
    padding: 0 15px;
  }
  
  /* Further adjust container padding for small mobile */
  .services-container,
  .features-container,
  .process-container,
  .benefits-container,
  .pricing-container {
    padding: 0 15px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 100px 15px 60px !important;
  }
  
  .cta-container {
    padding: 0 15px;
  }
  
  .cta-section.white-theme {
    padding: 70px 15px;
  }
  
  .cta-section.white-theme h2 {
    font-size: 28px;
  }
  
  .cta-section.white-theme p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}