/* ===============================
HOW TO GET STARTED SECTION - Immersive Journey Design
=============================== */

.section--get-started {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Elements */
.section--get-started::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(175, 45, 44, 0.03) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.section--get-started::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(175, 45, 44, 0.02) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(1deg); }
  66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.get-started-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

/* Section Header - Hero Style */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section--get-started .section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: inline-block;
  position: relative;
  padding: 0;
}

.section--get-started .section-eyebrow::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--brand-red);
  opacity: 0.5;
}

.section--get-started .section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section--get-started .section-lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Journey Path Design */
.process-journey {
  position: relative;
  padding: 60px 0;
}

/* SVG Path Connection */
.journey-path {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 0;
}

.journey-path svg {
  width: 100%;
  height: 100px;
  position: absolute;
  top: -49px;
}

.journey-path path {
  stroke: var(--brand-red);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 3s ease-out forwards;
  opacity: 0.3;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

/* Process Cards - Floating Style */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.process-step {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(175, 45, 44, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0);
  cursor: pointer;
}

.process-step:nth-child(1) { animation: slideInUp 0.6s ease-out 0.2s both; }
.process-step:nth-child(2) { animation: slideInUp 0.6s ease-out 0.4s both; }
.process-step:nth-child(3) { animation: slideInUp 0.6s ease-out 0.6s both; }
.process-step:nth-child(4) { animation: slideInUp 0.6s ease-out 0.8s both; }

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

.process-step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(175, 45, 44, 0.15);
  border-color: var(--brand-red);
}

/* Floating Badge Number */
.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--brand-red) 0%, #d64545 100%);
  border: 5px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 10px 30px rgba(175, 45, 44, 0.3);
  z-index: 3;
}

/* Icon */
.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  background: rgba(175, 45, 44, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  background: rgba(175, 45, 44, 0.15);
  transform: scale(1.1);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--brand-red);
  stroke-width: 2;
}

/* Content */
.step-content {
  text-align: center;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.step-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Interactive Details */
.step-details {
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #555;
  transition: all 0.3s ease;
}

.detail-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand-red);
  transition: all 0.3s ease;
}

.process-step:hover .detail-item {
  color: #333;
}

.process-step:hover .detail-item svg {
  transform: scale(1.2);
}

/* CTA Section with Curved Oval Design */
.get-started-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px 40px;
  background: transparent;
  position: relative;
  overflow: visible;
}

/* Curved Oval Background Shape */
.get-started-cta::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -10%;
  right: -10%;
  bottom: 0;
  background: linear-gradient(180deg, #f3f3f3 0%, #ececec 100%);
  clip-path: ellipse(85% 100% at 50% 100%);
  z-index: -1;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.04);
}

/* Subtle Accent Overlay */
.get-started-cta::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(175, 45, 44, 0.06) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}

.cta-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Primary CTA Button */
.btn.primary-btn {
  background: var(--brand-red);
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(175, 45, 44, 0.25);
  position: relative;
  margin-bottom: 25px;
}

.btn.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(175, 45, 44, 0.35);
  background: #c93636;
}

.btn.primary-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn.primary-btn:hover svg {
  transform: translateX(3px);
}

/* Divider */
.cta-divider {
  color: #999;
  margin: 0 0 25px 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Phone CTA */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: white;
  border: 1.5px solid #e0e0e0;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.phone-cta:hover {
  background: #fafafa;
  border-color: var(--brand-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.phone-cta svg {
  width: 18px;
  height: 18px;
  fill: var(--brand-red);
  opacity: 0.9;
}

.phone-number {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .get-started-cta {
    margin-top: 80px;
    padding: 60px 30px;
  }
  
  .get-started-cta::before {
    top: -40px;
  }
  
  .get-started-cta::after {
    top: -30px;
    width: 600px;
    height: 350px;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .cta-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .get-started-cta {
    margin-top: 60px;
    padding: 50px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 0.875rem;
  }
}

/* Resource Prompt */
.resource-prompt {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.resource-prompt p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.resource-prompt a {
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.resource-prompt a:hover {
  border-bottom-color: var(--brand-red);
}