/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #030303;
  background: #fff;
}

/* Section Base */
.how-we-do {
  position: relative; 
  padding: 100px 0;
  background: #fff;
  overflow: hidden; 
}

/* Decorative Dots in lower-right */
.how-we-do::after {
  content: "";
  position: absolute;
  bottom: -80px;   
  right: -60px;    
  width: 419px;
  height: 419px;
  background: url("images/dot.png") repeat;
  opacity: 1;
  z-index: 0;    
}

/* Content always above dots */
.how-we-do > * {
  position: relative;
  z-index: 1;
}

/* Container */
.how-we-do .how-we-do-container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; 
  align-items: flex-start;
  gap: 60px;
}


/* Left Column */
.how-we-do .how-we-do-left {
  flex: 0 0 auto; 
}

.how-we-do .how-we-do-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #AFAFAF;
}

.how-we-do .how-we-do-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 130%;
  color: #030303;
  margin-bottom: 20px;
  max-width: 560px;
}

.how-we-do .how-we-do-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #030303;
  margin-bottom: 30px;
  max-width: 541px;
}

/* Buttons */
.how-we-do .how-we-do-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.how-we-do .btn-primary,
.how-we-do .btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 100%;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  padding: 0;
}

/* Primary Button */
.how-we-do .btn-primary {
  width: 194px;
  height: 51px;
  background: #e63946;
  color: #fff;
  font-weight: 400;
}
.how-we-do .btn-primary:hover {
  background: #d62839;
}

/* Outline Button */
.how-we-do .btn-outline {
  width: 149px;
  height: 51px;
  background: #fff;
  border: 1px solid #E83132;
  color: #E83132;
  font-weight: 400;
}
.how-we-do .btn-outline:hover {
  background: #e63946;
  color: #fff;
}

/* Testimonial */
.how-we-do .how-we-do-testimonial {
  margin-top: 30px;
}

.how-we-do .testimonial-quote {
  width: 489px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #030303B8;
  margin-bottom: 20px;
}

.how-we-do .quote-icon {
  width: 32px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.how-we-do .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.how-we-do .testimonial-author img {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  object-fit: cover;
}

.how-we-do .testimonial-author h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  margin: 0;
  color: #030303;
}

.how-we-do .testimonial-author span {
  font-weight: 400;
  font-size: 11px;
  line-height: 200%;
  color: #e63946;
}

/* Right Column */
.how-we-do .how-we-do-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 720px; 
  margin-left: auto;
  justify-content: end; 
}

/* Step Card */
.how-we-do .how-we-do-step {
  background: #FCE9E9;
  padding: 25px;
  height: 314px;
  border-radius: 24px;
  width: 100%;
  max-width: 353px;  
}

.how-we-do .step-number {
  width: 50px;
  height: 50px;
  background: #E83132;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 15px;
}

.how-we-do .step-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  color: #030303;
  margin-bottom: 10px;
}

.how-we-do .step-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #030303;
}
