/* ========== List Your Services Page ========== */

/* ── Hero ── */
.lys-hero {
  position: relative;
  padding: 72px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1a2a0a 0%, #2d4a14 50%, #1a2a0a 100%);
  overflow: hidden;
}

.lys-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('../img/soldiers.webp') center / cover no-repeat;
  opacity: 0.12;
}

.lys-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.lys-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 1px;
}

.lys-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 0 28px;
}

.lys-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.lys-hero-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── Page background & container ── */
.lys-page-bg {
  background: #f4f6f0;
  padding: 48px 20px 72px;
}

.lys-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Generic card ── */
.lys-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lys-card p {
  font-size: 0.97rem;
  color: #3a4a25;
  line-height: 1.75;
  margin: 0;
}

/* ── Intro card ── */
.lys-intro {
  background: linear-gradient(135deg, #f6f9f0, #fff);
  border: 1px solid #d4dfc0;
}

.lys-intro p {
  font-size: 1rem;
  color: #2c3a15;
  text-align: center;
}

/* ── Card header (icon + title) ── */
.lys-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8f0d8;
}

.lys-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #e8f0d8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #556B2F;
}

.lys-card-icon svg {
  width: 22px;
  height: 22px;
}

.lys-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c2b0e;
  margin: 0;
}

/* ── Role cards grid ── */
.lys-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lys-role-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lys-role-card p {
  font-size: 0.93rem;
  color: #3a4a25;
  line-height: 1.7;
  margin: 0;
}

.lys-role-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lys-role-list li {
  font-size: 0.9rem;
  color: #4a5e2a;
  line-height: 1.5;
}

/* ── Benefits grid ── */
.lys-benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lys-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lys-benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #e8f0d8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #556B2F;
  margin-top: 2px;
}

.lys-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.lys-benefit h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1c2b0e;
  margin: 0 0 5px;
}

.lys-benefit p {
  font-size: 0.9rem;
  color: #4a5e2a;
  line-height: 1.65;
  margin: 0;
}

/* ── Steps ── */
.lys-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lys-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 24px;
}

.lys-step:last-child {
  padding-bottom: 0;
}

.lys-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background: #e8f0d8;
}

.lys-step-number {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: #556B2F;
  color: #fff;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.lys-step-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1c2b0e;
  margin: 7px 0 5px;
}

.lys-step-body p {
  font-size: 0.9rem;
  color: #4a5e2a;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA card ── */
.lys-cta-card {
  background: linear-gradient(135deg, #2d4a14 0%, #3d5e1a 100%);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 18px rgba(45, 74, 20, 0.35);
}

.lys-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.lys-cta-body {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

.lys-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.lys-cta-button {
  display: inline-block;
  padding: 13px 32px;
  background: #a8c060;
  color: #1c2b0e;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}

.lys-cta-button:hover {
  background: #bcd470;
  transform: translateY(-1px);
}

.lys-cta-secondary {
  display: inline-block;
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.18s;
}

.lys-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .lys-hero {
    padding: 52px 16px;
  }

  .lys-hero-title {
    font-size: 1.9rem;
  }

  .lys-hero-subtitle {
    font-size: 0.95rem;
  }

  .lys-page-bg {
    padding: 32px 14px 56px;
  }

  .lys-card {
    padding: 20px 18px;
  }

  .lys-roles-grid {
    grid-template-columns: 1fr;
  }

  .lys-role-card {
    padding: 20px 18px;
  }

  .lys-cta-card {
    padding: 28px 20px;
  }

  .lys-cta-title {
    font-size: 1.3rem;
  }
}
