/* Growth Strategy Page Styles */

/* Hero Section */
.growth-hero {
  background: linear-gradient(165deg, #ffffff 0%, #f8f9fa 100%);
  padding: 140px 20px 100px;
  position: relative;
  overflow: hidden;
}

.growth-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(172, 193, 252, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 111, 0, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.growth-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.growth-badge {
  display: inline-block;
  background: rgba(172, 193, 252, 0.15);
  color: var(--dark-navy);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(172, 193, 252, 0.4);
  font-family: 'Matter', sans-serif;
  animation: fadeInDown 0.6s ease-out;
}

.growth-hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: 'Calsans', 'Matter', sans-serif;
  color: var(--raisin-black);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.growth-hero h1 .highlight {
  background: linear-gradient(135deg, var(--pale-blue), var(--accent-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.growth-hero p {
  font-size: 22px;
  line-height: 1.6;
  color: var(--raisin-black);
  opacity: 0.7;
  max-width: 800px;
  margin: 0 auto 40px;
  font-family: 'Matter', sans-serif;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta-primary,
.hero-cta-secondary {
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: 'Matter', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-cta-primary {
  background: var(--pale-blue);
  color: var(--dark-navy);
  border: 2px solid transparent;
}

.hero-cta-primary::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-yellow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.hero-cta-primary:hover::before {
  top: 0;
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(172, 193, 252, 0.3);
}

.hero-cta-secondary {
  background: transparent;
  color: var(--raisin-black);
  border: 2px solid var(--raisin-black);
}

.hero-cta-secondary:hover {
  background: var(--raisin-black);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
  padding: 80px 20px;
  background: var(--raisin-black);
  position: relative;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  text-align: center;
}

.stat-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.stat-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--pale-blue), var(--accent-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Calsans', sans-serif;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--off-white);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Matter', sans-serif;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 20px;
  background: #ffffff;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--pale-blue);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family: 'Matter', sans-serif;
}

.section-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--raisin-black);
  font-family: 'Calsans', 'Matter', sans-serif;
}

.section-desc {
  font-size: 18px;
  color: var(--raisin-black);
  opacity: 0.7;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-family: 'Matter', sans-serif;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
}

.step-card {
  padding: 40px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

.step-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  border-color: var(--pale-blue);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--pale-blue), var(--accent-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  font-family: 'Calsans', sans-serif;
}

.step-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--raisin-black);
  font-family: 'Calsans', 'Matter', sans-serif;
}

.step-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--raisin-black);
  opacity: 0.7;
  margin: 0;
  font-family: 'Matter', sans-serif;
}

/* Services Grid Section */
.services-section {
  padding: 100px 20px;
  background: #f8f9fa;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
}

.service-card.in-view {
  opacity: 1;
  transform: scale(1);
}

.service-card:hover {
  border-color: var(--pale-blue);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--pale-blue), var(--accent-yellow));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--raisin-black);
  font-family: 'Calsans', 'Matter', sans-serif;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--raisin-black);
  opacity: 0.7;
  margin-bottom: 20px;
  font-family: 'Matter', sans-serif;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--raisin-black);
  opacity: 0.8;
  font-family: 'Matter', sans-serif;
}

.service-features li::before {
  content: "✓";
  color: var(--pale-blue);
  font-weight: 700;
  font-size: 16px;
}

/* Timeline Section */
.timeline-section {
  padding: 100px 20px;
  background: var(--raisin-black);
  position: relative;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline-header .section-label {
  color: var(--pale-blue);
}

.timeline-header h2 {
  color: var(--off-white);
}

.timeline-header p {
  color: var(--off-white);
}

.timeline {
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pale-blue), var(--accent-yellow));
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease-out;
}

.timeline-item.in-view {
  opacity: 1;
  transform: translateX(0);
}

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--pale-blue);
  border-radius: 50%;
  border: 4px solid var(--raisin-black);
  z-index: 1;
}

.timeline-item:hover .timeline-dot {
  background: var(--accent-yellow);
  transform: scale(1.3);
  transition: all 0.3s ease;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-month {
  font-size: 13px;
  font-weight: 600;
  color: var(--pale-blue);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Matter', sans-serif;
}

.timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 12px;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--off-white);
  opacity: 0.7;
  margin: 0;
  font-family: 'Matter', sans-serif;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 20px;
  background: #ffffff;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  padding: 48px 40px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

.pricing-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  border-color: var(--pale-blue);
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  background: linear-gradient(165deg, #f8f9fa 0%, #ffffff 100%);
  border-color: var(--pale-blue);
  border-width: 3px;
}

.pricing-badge {
  display: inline-block;
  background: var(--pale-blue);
  color: var(--dark-navy);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Matter', sans-serif;
}

.pricing-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--raisin-black);
  margin-bottom: 12px;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--raisin-black);
  margin-bottom: 8px;
  font-family: 'Calsans', sans-serif;
}

.pricing-card .price span {
  font-size: 18px;
  opacity: 0.6;
  font-weight: 500;
}

.pricing-card .billing {
  font-size: 14px;
  color: var(--raisin-black);
  opacity: 0.6;
  margin-bottom: 32px;
  font-family: 'Matter', sans-serif;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--raisin-black);
  font-family: 'Matter', sans-serif;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--pale-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  width: 100%;
  padding: 16px 32px;
  background: var(--pale-blue);
  color: var(--dark-navy);
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: 'Matter', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  display: block;
  text-align: center;
}

.pricing-cta::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-yellow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.pricing-cta:hover::before {
  top: 0;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(172, 193, 252, 0.3);
}

/* CTA Section */
.final-cta {
  padding: 120px 20px;
  background: linear-gradient(135deg, var(--pale-blue), var(--accent-yellow));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.final-cta p {
  font-size: 20px;
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 40px;
  font-family: 'Matter', sans-serif;
}

.final-cta-button {
  display: inline-block;
  padding: 18px 48px;
  background: var(--dark-navy);
  color: #ffffff;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  font-family: 'Matter', sans-serif;
}

.final-cta-button:hover {
  background: var(--raisin-black);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .steps-grid,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    padding-left: 40px;
  }
  
  .timeline::before {
    left: 10px;
  }
  
  .timeline-dot {
    left: -38px;
  }
}
