/*--------------------------------------------------
  Feature Section
--------------------------------------------------*/
.feature-section {
  padding: 4rem 0;
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Text Column */
.feature-text {
  flex: 1;
  min-width: 280px;
}

.feature-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  /* Bold */
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.feature-sub {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  /* Regular */
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Buttons */
.feature-buttons {
  display: inline-flex;
  gap: 1rem;
}

.btn {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  /* Semibold */
  font-size: 16px;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: background 0.3s, transform 0.2s, color 0.3s;
}

.btn-dark {
  background: #ff7800;
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #ff7800;
  border: 2px solid #ff7800;
}

.btn-outline:hover {
  background: #ff7800;
  /* Orange */
  color: #fff;
  transform: translateY(-2px);
}

/* Image Column */
.feature-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.feature-image img {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-content {
    flex-direction: column;
    text-align: center;
  }

  .feature-image {
    margin-top: 2rem;
  }
}

/*--------------------------------------------------
  Our Pricing Section
--------------------------------------------------*/
.pricing-section {
  padding: 4rem 0;
}

.pricing-tagline {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  /* Regular */
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}

.pricing-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  /* Bold */
  font-size: 48px;
  text-align: center;
  color: #222;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pricing-subtext {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  /* Regular */
  font-size: 16px;
  text-align: center;
  color: #333;
  margin-bottom: 2.5rem;
}

.pricing-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual Card */
.pricing-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Card Title */
.card-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  /* Bold */
  font-size: 20px;
  color: #222;
  margin-bottom: 1rem;
  text-align: center;
}

/* Price */
.card-price {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: #222;
  margin: 0;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  /* Prevents line breaks */
}

.card-price-sub {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  /* Regular */
  font-size: 16px;
  color: #777;
  text-align: center;
  margin: 0.5rem 0 1.5rem;
}

/* Features List */
.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.card-features li {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  /* Medium weight for better readability */
  font-size: 15px;
  color: #444;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.card-features li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.card-features li::before {
  content: "✓";
  color: #ff7800;
  /* Orange check to match brand */
  margin-right: 0.75rem;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Button */
.pricing-btn {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  /* Regular */
  font-size: 16px;
  text-decoration: none;
  background: #ff7800;
  /* Orange */
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
}

.pricing-btn:hover {
  background: #e06700;
  /* Darker orange */
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-cards {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------
  One-Stop Shop: 3-column grid
--------------------------------------------------*/
.one-stop-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* title | image | details */
  align-items: center;
  gap: 2rem;
  padding: 4rem 0;
}

.one-stop-title-col,
.one-stop-details-col {
  min-width: 280px;
}

.one-stop-image-col {
  /* let the image size itself */
  text-align: center;
}

.one-stop-image-col img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Title (left) */
.one-stop-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  /* Bold */
  font-size: 36px;
  line-height: 1.2;
  color: #222;
  margin: 0;
}

/* Sub-text (right) */
.one-stop-sub {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  /* Regular */
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Buttons (right) */
.one-stop-buttons {
  display: inline-flex;
  gap: 1rem;
}

/* reuse your existing .btn, .btn-dark, .btn-outline styles */

/*--------------------------------------------------
  Responsive: stack on narrow screens
--------------------------------------------------*/
@media (max-width: 768px) {
  .one-stop-content {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .one-stop-title-col,
  .one-stop-details-col {
    margin-bottom: 2rem;
  }

  .one-stop-buttons {
    justify-content: center;
  }
}
